ApplicationIap

data class ApplicationIap(val enabled: Boolean? = null, val oauth2ClientId: String, val oauth2ClientSecret: String, val oauth2ClientSecretSha256: String? = null)

Constructors

Link copied to clipboard
constructor(enabled: Boolean? = null, oauth2ClientId: String, oauth2ClientSecret: String, oauth2ClientSecretSha256: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enabled: Boolean? = null

(Optional) Whether the serving infrastructure will authenticate and authorize all incoming requests. (default is false)

Link copied to clipboard

OAuth2 client ID to use for the authentication flow.

Link copied to clipboard

OAuth2 client secret to use for the authentication flow. The SHA-256 hash of the value is returned in the oauth2ClientSecretSha256 field.

Link copied to clipboard

Hex-encoded SHA-256 hash of the client secret.