Class: Dnsimple::Struct::Domain
- Defined in:
- lib/dnsimple/struct/domain.rb
Instance Attribute Summary collapse
-
#auto_renew ⇒ Object
Is the domain set to auto renew?.
-
#created_at ⇒ String
When the domain was created in DNSimple.
-
#expires_on ⇒ String
The date the domain will expire.
-
#id ⇒ Fixnum
The domain ID in DNSimple.
-
#name ⇒ Object
The String name.
-
#registrant_id ⇒ Fixnum
The associated registrant (contact) ID.
-
#state ⇒ Object
The String state.
-
#token ⇒ Object
The String API token.
-
#updated_at ⇒ String
When the domain was last updated in DNSimple.
-
#user_id ⇒ Fixnum
The associated user ID.
-
#whois_protected ⇒ Object
Is the whois information protected?.
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dnsimple::Struct::Base
Instance Attribute Details
#auto_renew ⇒ Object
Is the domain set to auto renew?
24 25 26 |
# File 'lib/dnsimple/struct/domain.rb', line 24 def auto_renew @auto_renew end |
#created_at ⇒ String
Returns When the domain was created in DNSimple.
33 34 35 |
# File 'lib/dnsimple/struct/domain.rb', line 33 def created_at @created_at end |
#expires_on ⇒ String
Returns The date the domain will expire.
30 31 32 |
# File 'lib/dnsimple/struct/domain.rb', line 30 def expires_on @expires_on end |
#id ⇒ Fixnum
Returns The domain ID in DNSimple.
6 7 8 |
# File 'lib/dnsimple/struct/domain.rb', line 6 def id @id end |
#name ⇒ Object
The String name.
15 16 17 |
# File 'lib/dnsimple/struct/domain.rb', line 15 def name @name end |
#registrant_id ⇒ Fixnum
Returns The associated registrant (contact) ID.
12 13 14 |
# File 'lib/dnsimple/struct/domain.rb', line 12 def registrant_id @registrant_id end |
#state ⇒ Object
The String state.
18 19 20 |
# File 'lib/dnsimple/struct/domain.rb', line 18 def state @state end |
#token ⇒ Object
The String API token
21 22 23 |
# File 'lib/dnsimple/struct/domain.rb', line 21 def token @token end |
#updated_at ⇒ String
Returns When the domain was last updated in DNSimple.
36 37 38 |
# File 'lib/dnsimple/struct/domain.rb', line 36 def updated_at @updated_at end |
#user_id ⇒ Fixnum
Returns The associated user ID.
9 10 11 |
# File 'lib/dnsimple/struct/domain.rb', line 9 def user_id @user_id end |
#whois_protected ⇒ Object
Is the whois information protected?
27 28 29 |
# File 'lib/dnsimple/struct/domain.rb', line 27 def whois_protected @whois_protected end |