Skip to main content

HttpAuthenticationType

Defines the HTTP Authentication type. Additional values may be added in the future. If NO_AUTH is selected, no extra information will be in HttpConfig. If BASIC_AUTH is selected, HttpConfig will include BasicAuthConfig with Username and Password as strings. If BEARER_TOKEN is selected, HttpConfig will include BearerTokenAuthConfig with Token as string.

Enum

  • NO_AUTH (value: 'NO_AUTH')

  • BASIC_AUTH (value: 'BASIC_AUTH')

  • BEARER_TOKEN (value: 'BEARER_TOKEN')

[Back to top]