Class: Google::Apis::CivicinfoV2::SimpleAddressType

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

Overview

A simple representation of an address.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SimpleAddressType

Returns a new instance of SimpleAddressType.



1266
1267
1268
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1266

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

Instance Attribute Details

#cityString

The city or town for the address. Corresponds to the JSON property city

Returns:

  • (String)


1234
1235
1236
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1234

def city
  @city
end

#line1String

The street name and number of this address. Corresponds to the JSON property line1

Returns:

  • (String)


1239
1240
1241
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1239

def line1
  @line1
end

#line2String

The second line the address, if needed. Corresponds to the JSON property line2

Returns:

  • (String)


1244
1245
1246
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1244

def line2
  @line2
end

#line3String

The third line of the address, if needed. Corresponds to the JSON property line3

Returns:

  • (String)


1249
1250
1251
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1249

def line3
  @line3
end

#location_nameString

The name of the location. Corresponds to the JSON property locationName

Returns:

  • (String)


1254
1255
1256
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1254

def location_name
  @location_name
end

#stateString

The US two letter state abbreviation of the address. Corresponds to the JSON property state

Returns:

  • (String)


1259
1260
1261
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1259

def state
  @state
end

#zipString

The US Postal Zip Code of the address. Corresponds to the JSON property zip

Returns:

  • (String)


1264
1265
1266
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1264

def zip
  @zip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1271
1272
1273
1274
1275
1276
1277
1278
1279
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 1271

def update!(**args)
  @city = args[:city] if args.key?(:city)
  @line1 = args[:line1] if args.key?(:line1)
  @line2 = args[:line2] if args.key?(:line2)
  @line3 = args[:line3] if args.key?(:line3)
  @location_name = args[:location_name] if args.key?(:location_name)
  @state = args[:state] if args.key?(:state)
  @zip = args[:zip] if args.key?(:zip)
end