class Google::Apis::DomainsV1beta1::ManagementSettings
Defines renewal, billing, and transfer settings for a `Registration`.
Attributes
renewal_method[RW]
Output only. The renewal method for this `Registration`. Corresponds to the JSON property `renewalMethod` @return [String]
transfer_lock_state[RW]
Controls whether the domain can be transferred to another registrar. Corresponds to the JSON property `transferLockState` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/domains_v1beta1/classes.rb, line 771 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_v1beta1/classes.rb, line 776 def update!(**args) @renewal_method = args[:renewal_method] if args.key?(:renewal_method) @transfer_lock_state = args[:transfer_lock_state] if args.key?(:transfer_lock_state) end