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.
ngcp-csc/app/model/Call.js

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
}]
});