mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
460 B
25 lines
460 B
Ext.define('NgcpCsc.model.Call', {
|
|
extend: 'Ext.data.Model',
|
|
|
|
fields: [{
|
|
name: 'call-type',
|
|
type: 'string'
|
|
}, {
|
|
name: 'source-cli',
|
|
type: 'string'
|
|
}, {
|
|
name: 'duration',
|
|
type: 'string'
|
|
}, {
|
|
name: 'charges',
|
|
type: 'string'
|
|
}, {
|
|
name: 'start_time',
|
|
type: 'string'
|
|
}, {
|
|
name: 'timeGroup',
|
|
type: 'string',
|
|
persist: false
|
|
}]
|
|
});
|