class Azure::Web::Mgmt::V2015_04_01::Models::TopLevelDomainAgreementOption
Options for retrieving the list of top level domain legal agreements.
Attributes
for_transfer[RW]
@return [Boolean] If true
, then the list of agreements will include agreements for domain transfer as well; otherwise, false
.
include_privacy[RW]
@return [Boolean] If true
, then the list of agreements will include agreements for domain privacy as well; otherwise, false
.
Public Class Methods
mapper()
click to toggle source
Mapper for TopLevelDomainAgreementOption
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-04-01/generated/azure_mgmt_web/models/top_level_domain_agreement_option.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TopLevelDomainAgreementOption', type: { name: 'Composite', class_name: 'TopLevelDomainAgreementOption', model_properties: { include_privacy: { client_side_validation: true, required: false, serialized_name: 'includePrivacy', type: { name: 'Boolean' } }, for_transfer: { client_side_validation: true, required: false, serialized_name: 'forTransfer', type: { name: 'Boolean' } } } } } end