class Provider::Models::TenantKeysContract
Tenant keys
Attributes
access_token[RW]
@return [String] JWT Access Token that authorizes API calls for the organization
subscription_key[RW]
@return [String] Identifies and authenticates your subscription
Public Class Methods
mapper()
click to toggle source
Mapper for TenantKeysContract
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/generated/provider/models/tenant_keys_contract.rb, line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TenantKeysContract', type: { name: 'Composite', class_name: 'TenantKeysContract', model_properties: { access_token: { client_side_validation: true, required: false, serialized_name: 'accessToken', type: { name: 'String' } }, subscription_key: { client_side_validation: true, required: false, serialized_name: 'subscriptionKey', type: { name: 'String' } } } } } end