class Xolphin::Api::Responses::CsrData

Public Class Methods

new(data) click to toggle source
Calls superclass method Xolphin::Api::Responses::Base::new
# File lib/xolphin/api/responses/csr_data.rb, line 5
def initialize(data)
  super(data)
end

Public Instance Methods

alt_names() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 37
def alt_names
  @data["altNames"]
end
city() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 29
def city
  @data["city"]
end
cn() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 21
def cn
  @data["cn"]
end
company() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 17
def company
  @data["company"]
end
country() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 33
def country
  @data["country"]
end
size() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 13
def size
  @data["size"]
end
state() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 25
def state
  @data["state"]
end
type() click to toggle source
# File lib/xolphin/api/responses/csr_data.rb, line 9
def type
  @data["type"]
end