Class: Dnsimple::Struct::Domain

Inherits:
Base
  • Object
show all
Defined in:
lib/dnsimple/struct/domain.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Dnsimple::Struct::Base

Instance Attribute Details

#account_idInteger

Returns The associated account ID.

Returns:

  • (Integer)

    The associated account ID.



11
12
13
# File 'lib/dnsimple/struct/domain.rb', line 11

def 
  @account_id
end

#auto_renewBool

Returns True if the domain is set to auto-renew, false otherwise.

Returns:

  • (Bool)

    True if the domain is set to auto-renew, false otherwise.



26
27
28
# File 'lib/dnsimple/struct/domain.rb', line 26

def auto_renew
  @auto_renew
end

#created_atString

Returns When the domain was created in DNSimple.

Returns:

  • (String)

    When the domain was created in DNSimple.



35
36
37
# File 'lib/dnsimple/struct/domain.rb', line 35

def created_at
  @created_at
end

#expires_atString

Returns The timestamp when domain will expire.

Returns:

  • (String)

    The timestamp when domain will expire.



32
33
34
# File 'lib/dnsimple/struct/domain.rb', line 32

def expires_at
  @expires_at
end

#idInteger

Returns The domain ID in DNSimple.

Returns:

  • (Integer)

    The domain ID in DNSimple.



8
9
10
# File 'lib/dnsimple/struct/domain.rb', line 8

def id
  @id
end

#nameString

Returns The domain name.

Returns:

  • (String)

    The domain name.



17
18
19
# File 'lib/dnsimple/struct/domain.rb', line 17

def name
  @name
end

#private_whoisBool

Returns True if the domain WHOIS privacy is enabled, false otherwise.

Returns:

  • (Bool)

    True if the domain WHOIS privacy is enabled, false otherwise.



29
30
31
# File 'lib/dnsimple/struct/domain.rb', line 29

def private_whois
  @private_whois
end

#registrant_idInteger

Returns The associated registrant (contact) ID.

Returns:

  • (Integer)

    The associated registrant (contact) ID.



14
15
16
# File 'lib/dnsimple/struct/domain.rb', line 14

def registrant_id
  @registrant_id
end

#stateString

Returns The domain state.

Returns:

  • (String)

    The domain state.



23
24
25
# File 'lib/dnsimple/struct/domain.rb', line 23

def state
  @state
end

#tokenString

Returns The domain API token used for domain authentication.

Returns:

  • (String)

    The domain API token used for domain authentication.



20
21
22
# File 'lib/dnsimple/struct/domain.rb', line 20

def token
  @token
end

#updated_atString

Returns When the domain was last updated in DNSimple.

Returns:

  • (String)

    When the domain was last updated in DNSimple.



38
39
40
# File 'lib/dnsimple/struct/domain.rb', line 38

def updated_at
  @updated_at
end