class Azure::EventGrid::Mgmt::V2019_06_01::Models::EventSubscriptionFullUrl

Full endpoint url of an event subscription

Attributes

endpoint_url[RW]

@return [String] The URL that represents the endpoint of the destination of an event subscription.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01/generated/azure_mgmt_event_grid/models/event_subscription_full_url.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EventSubscriptionFullUrl',
    type: {
      name: 'Composite',
      class_name: 'EventSubscriptionFullUrl',
      model_properties: {
        endpoint_url: {
          client_side_validation: true,
          required: false,
          serialized_name: 'endpointUrl',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end