toIAMUserAccessToBilling method
Implementation
IAMUserAccessToBilling toIAMUserAccessToBilling() {
switch (this) {
case 'ALLOW':
return IAMUserAccessToBilling.allow;
case 'DENY':
return IAMUserAccessToBilling.deny;
}
throw Exception('$this is not known in enum IAMUserAccessToBilling');
}