class Azure::Web::Mgmt::V2016_06_01::Models::ConsentLinkDefinition

A consent link

Attributes

display_name[RW]

@return [String] Display name of the parameter in the connection provider's OAuth settings

first_party_login_uri[RW]

@return [String] URI for first party login

status[RW]

@return [LinkState] Status of the link. Possible values include: 'Unauthenticated', 'Authenticated', 'Error'

Public Class Methods

mapper() click to toggle source

Mapper for ConsentLinkDefinition class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-06-01/generated/azure_mgmt_web/models/consent_link_definition.rb, line 34
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ConsentLinkDefinition',
    type: {
      name: 'Composite',
      class_name: 'ConsentLinkDefinition',
      model_properties: {
        link: {
          client_side_validation: true,
          required: false,
          serialized_name: 'link',
          type: {
            name: 'String'
          }
        },
        first_party_login_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'firstPartyLoginUri',
          type: {
            name: 'String'
          }
        },
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end