Class: Dnsimple::Struct::Zone
Instance Attribute Summary collapse
-
#account_id ⇒ Integer
The associated account ID.
-
#created_at ⇒ String
When the zone was created in DNSimple.
-
#id ⇒ Integer
The zone ID in DNSimple.
-
#name ⇒ String
The zone name.
-
#reverse ⇒ Boolean
True if the zone is a reverse zone.
-
#updated_at ⇒ String
When the zone was last updated in DNSimple.
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dnsimple::Struct::Base
Instance Attribute Details
#account_id ⇒ Integer
Returns The associated account ID.
11 12 13 |
# File 'lib/dnsimple/struct/zone.rb', line 11 def account_id @account_id end |
#created_at ⇒ String
Returns When the zone was created in DNSimple.
20 21 22 |
# File 'lib/dnsimple/struct/zone.rb', line 20 def created_at @created_at end |
#id ⇒ Integer
Returns The zone ID in DNSimple.
8 9 10 |
# File 'lib/dnsimple/struct/zone.rb', line 8 def id @id end |
#name ⇒ String
Returns The zone name.
14 15 16 |
# File 'lib/dnsimple/struct/zone.rb', line 14 def name @name end |
#reverse ⇒ Boolean
Returns True if the zone is a reverse zone.
17 18 19 |
# File 'lib/dnsimple/struct/zone.rb', line 17 def reverse @reverse end |
#updated_at ⇒ String
Returns When the zone was last updated in DNSimple.
23 24 25 |
# File 'lib/dnsimple/struct/zone.rb', line 23 def updated_at @updated_at end |