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.
54 lines
1012 B
54 lines
1012 B
Ext.define('NgcpCsc.model.CallForwardDestination', {
|
|
extend: 'Ext.data.Model',
|
|
|
|
fields: [{
|
|
name: 'id',
|
|
type: 'string'
|
|
},
|
|
{
|
|
name: 'type'
|
|
},
|
|
{
|
|
name: 'destination_displayed'
|
|
},
|
|
{
|
|
name: 'destination'
|
|
},
|
|
{
|
|
name: 'after_termination',
|
|
defaultValue: false
|
|
},
|
|
{
|
|
name: 'destination_announcement_id',
|
|
defaultValue: null
|
|
},
|
|
{
|
|
name: 'priority',
|
|
defaultValue: '1'
|
|
},
|
|
{
|
|
name: 'timeout_displayed'
|
|
},
|
|
{
|
|
name: 'timeout'
|
|
},
|
|
{
|
|
name: 'sourceset'
|
|
},
|
|
{
|
|
name: 'timeset'
|
|
},
|
|
{
|
|
name: 'destinationset_id'
|
|
},
|
|
{
|
|
name: 'destinationset_name'
|
|
},
|
|
{
|
|
name: 'label',
|
|
defaultValue: ''
|
|
}
|
|
]
|
|
|
|
});
|