Authentication Rule Response
data class AuthenticationRuleResponse(val allowWithoutCredential: Boolean, val oauth: OAuthRequirementsResponse, val requirements: List<AuthRequirementResponse>, val selector: String)
Authentication rules for the service. By default, if a method has any authentication requirements, every request must include a valid credential matching one of the requirements. It's an error to include more than one kind of credential in a single request. If a method doesn't have any auth requirements, request credentials will be ignored.
Constructors
Link copied to clipboard
constructor(allowWithoutCredential: Boolean, oauth: OAuthRequirementsResponse, requirements: List<AuthRequirementResponse>, selector: String)