class Google::Apis::DomainsV1alpha2::ConfigureManagementSettingsRequest

Request for the `ConfigureManagementSettings` method.

Attributes

management_settings[RW]

Defines renewal, billing, and transfer settings for a `Registration`. Corresponds to the JSON property `managementSettings` @return [Google::Apis::DomainsV1alpha2::ManagementSettings]

update_mask[RW]

Required. The field mask describing which fields to update as a comma- separated list. For example, if only the transfer lock is being updated, the ` update_mask` would be `“transfer_lock_state”`. Corresponds to the JSON property `updateMask` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/domains_v1alpha2/classes.rb, line 286
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/domains_v1alpha2/classes.rb, line 291
def update!(**args)
  @management_settings = args[:management_settings] if args.key?(:management_settings)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end