class CybridApiId::Configuration

def auth_settings

Returns Auth Settings hash for api client.
def auth_settings
  {
    'BearerAuth' =>
      {
        type: 'bearer',
        in: 'header',
        format: 'JWT',
        key: 'Authorization',
        value: "Bearer #{access_token}"
      },
    'oauth2' =>
      {
        type: 'oauth2',
        in: 'header',
        key: 'Authorization',
        value: "Bearer #{access_token}"
      },
  }
end