Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 897 Bytes

IntrospectResponse.md

File metadata and controls

24 lines (18 loc) · 897 Bytes

OpenapiClient::IntrospectResponse

Properties

Name Type Description Notes
client_id String The client ID you received when you first created the application [readonly]
mode ModeResponse
provider ProviderResponse
scopes Array<ScopesResponse> One or more scope values indicating which parts of the user's account you wish to access. Note, slight deviation from the OAuth 2.1 spec in that the param is scopes (plural) is used vs scope (singular) [readonly]

Example

require 'openapi_client'

instance = OpenapiClient::IntrospectResponse.new(
  client_id: 00000000-00000000-00000000-00000000,
  mode: null,
  provider: null,
  scopes: [&quot;identity&quot;,&quot;census&quot;]
)