toOrganizationConfigRuleTriggerType method
Implementation
OrganizationConfigRuleTriggerType toOrganizationConfigRuleTriggerType() {
switch (this) {
case 'ConfigurationItemChangeNotification':
return OrganizationConfigRuleTriggerType
.configurationItemChangeNotification;
case 'OversizedConfigurationItemChangeNotification':
return OrganizationConfigRuleTriggerType
.oversizedConfigurationItemChangeNotification;
case 'ScheduledNotification':
return OrganizationConfigRuleTriggerType.scheduledNotification;
}
throw Exception(
'$this is not known in enum OrganizationConfigRuleTriggerType');
}