Class: Google::Apis::ContentV2_1::AccountAddress

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccountAddress

Returns a new instance of AccountAddress.



149
150
151
# File 'generated/google/apis/content_v2_1/classes.rb', line 149

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#countryString

CLDR country code (e.g. "US"). Corresponds to the JSON property country

Returns:

  • (String)


125
126
127
# File 'generated/google/apis/content_v2_1/classes.rb', line 125

def country
  @country
end

#localityString

City, town or commune. May also include dependent localities or sublocalities ( e.g. neighborhoods or suburbs). Corresponds to the JSON property locality

Returns:

  • (String)


131
132
133
# File 'generated/google/apis/content_v2_1/classes.rb', line 131

def locality
  @locality
end

#postal_codeString

Postal code or ZIP (e.g. "94043"). Corresponds to the JSON property postalCode

Returns:

  • (String)


136
137
138
# File 'generated/google/apis/content_v2_1/classes.rb', line 136

def postal_code
  @postal_code
end

#regionString

Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC"). Corresponds to the JSON property region

Returns:

  • (String)


142
143
144
# File 'generated/google/apis/content_v2_1/classes.rb', line 142

def region
  @region
end

#street_addressString

Street-level part of the address. Corresponds to the JSON property streetAddress

Returns:

  • (String)


147
148
149
# File 'generated/google/apis/content_v2_1/classes.rb', line 147

def street_address
  @street_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



154
155
156
157
158
159
160
# File 'generated/google/apis/content_v2_1/classes.rb', line 154

def update!(**args)
  @country = args[:country] if args.key?(:country)
  @locality = args[:locality] if args.key?(:locality)
  @postal_code = args[:postal_code] if args.key?(:postal_code)
  @region = args[:region] if args.key?(:region)
  @street_address = args[:street_address] if args.key?(:street_address)
end