toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AuthenticationType.api:
      return 'API';
    case AuthenticationType.saml:
      return 'SAML';
    case AuthenticationType.userpool:
      return 'USERPOOL';
  }
}