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

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

Overview

A simple representation of an address.

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) ⇒ SimpleAddressType

Returns a new instance of SimpleAddressType.



1106
1107
1108
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1106

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)


1074
1075
1076
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1074

def city
  @city
end

#line1String

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

Returns:

  • (String)


1079
1080
1081
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1079

def line1
  @line1
end

#line2String

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

Returns:

  • (String)


1084
1085
1086
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1084

def line2
  @line2
end

#line3String

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

Returns:

  • (String)


1089
1090
1091
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1089

def line3
  @line3
end

#location_nameString

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

Returns:

  • (String)


1094
1095
1096
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1094

def location_name
  @location_name
end

#stateString

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

Returns:

  • (String)


1099
1100
1101
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1099

def state
  @state
end

#zipString

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

Returns:

  • (String)


1104
1105
1106
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1104

def zip
  @zip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1111
1112
1113
1114
1115
1116
1117
1118
1119
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1111

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