class CrvApiClient::Api::Animals::Address

{ws.crvholding.com/participantTypes/}address

addressType - SOAP::SOAPString
street - SOAP::SOAPString
houseNr - SOAP::SOAPString
zipCd - SOAP::SOAPString
city - SOAP::SOAPString
regionCd - SOAP::SOAPString
country - SOAP::SOAPString
countryCd - SOAP::SOAPString

Attributes

addressType[RW]
city[RW]
country[RW]
countryCd[RW]
houseNr[RW]
regionCd[RW]
street[RW]
zipCd[RW]

Public Class Methods

new(addressType = nil, street = nil, houseNr = nil, zipCd = nil, city = nil, regionCd = nil, country = nil, countryCd = nil) click to toggle source
# File lib/crv_api_client/api/animals/animals.rb, line 1342
def initialize(addressType = nil, street = nil, houseNr = nil, zipCd = nil, city = nil, regionCd = nil, country = nil, countryCd = nil)
  @addressType = addressType
  @street = street
  @houseNr = houseNr
  @zipCd = zipCd
  @city = city
  @regionCd = regionCd
  @country = country
  @countryCd = countryCd
end