class Io::Flow::V0::Models::AddressFieldName
Attributes
value[R]
Public Class Methods
ALL()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16421 def AddressFieldName.ALL @@all ||= [AddressFieldName.first_name, AddressFieldName.last_name, AddressFieldName.street_1, AddressFieldName.street_2, AddressFieldName.city, AddressFieldName.province, AddressFieldName.postal, AddressFieldName.country, AddressFieldName.phone, AddressFieldName.company, AddressFieldName.vat_registration_number] end
apply(value)
click to toggle source
Returns the instance of AddressFieldName
for this value, creating a new instance for an unknown value
# File lib/flow_commerce/flow_api_v0_client.rb, line 16406 def AddressFieldName.apply(value) if value.instance_of?(AddressFieldName) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || AddressFieldName.new(value)) end end
city()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16441 def AddressFieldName.city @@_city ||= AddressFieldName.new('city') end
company()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16461 def AddressFieldName.company @@_company ||= AddressFieldName.new('company') end
country()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16453 def AddressFieldName.country @@_country ||= AddressFieldName.new('country') end
first_name()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16425 def AddressFieldName.first_name @@_first_name ||= AddressFieldName.new('first_name') end
from_string(value)
click to toggle source
Returns the instance of AddressFieldName
for this value, or nil if not found
# File lib/flow_commerce/flow_api_v0_client.rb, line 16416 def AddressFieldName.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) AddressFieldName.ALL.find { |v| v.value == value } end
last_name()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16429 def AddressFieldName.last_name @@_last_name ||= AddressFieldName.new('last_name') end
new(value)
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16401 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end
phone()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16457 def AddressFieldName.phone @@_phone ||= AddressFieldName.new('phone') end
postal()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16449 def AddressFieldName.postal @@_postal ||= AddressFieldName.new('postal') end
province()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16445 def AddressFieldName.province @@_province ||= AddressFieldName.new('province') end
street_1()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16433 def AddressFieldName.street_1 @@_street_1 ||= AddressFieldName.new('street_1') end
street_2()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16437 def AddressFieldName.street_2 @@_street_2 ||= AddressFieldName.new('street_2') end
vat_registration_number()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16465 def AddressFieldName.vat_registration_number @@_vat_registration_number ||= AddressFieldName.new('vat_registration_number') end
Public Instance Methods
to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 16469 def to_hash value end