Class: Google::Apis::ContentV2::OrderAddress

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/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) ⇒ OrderAddress

Returns a new instance of OrderAddress



2572
2573
2574
# File 'generated/google/apis/content_v2/classes.rb', line 2572

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

Instance Attribute Details

#countryString

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

Returns:

  • (String)


2528
2529
2530
# File 'generated/google/apis/content_v2/classes.rb', line 2528

def country
  @country
end

#full_addressArray<String>

Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States Corresponds to the JSON property fullAddress

Returns:

  • (Array<String>)


2538
2539
2540
# File 'generated/google/apis/content_v2/classes.rb', line 2538

def full_address
  @full_address
end

#is_post_office_boxBoolean Also known as: is_post_office_box?

Whether the address is a post office box. Corresponds to the JSON property isPostOfficeBox

Returns:

  • (Boolean)


2543
2544
2545
# File 'generated/google/apis/content_v2/classes.rb', line 2543

def is_post_office_box
  @is_post_office_box
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)


2550
2551
2552
# File 'generated/google/apis/content_v2/classes.rb', line 2550

def locality
  @locality
end

#postal_codeString

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

Returns:

  • (String)


2555
2556
2557
# File 'generated/google/apis/content_v2/classes.rb', line 2555

def postal_code
  @postal_code
end

#recipient_nameString

Name of the recipient. Corresponds to the JSON property recipientName

Returns:

  • (String)


2560
2561
2562
# File 'generated/google/apis/content_v2/classes.rb', line 2560

def recipient_name
  @recipient_name
end

#regionString

Top-level administrative subdivision of the country (e.g. "CA"). Corresponds to the JSON property region

Returns:

  • (String)


2565
2566
2567
# File 'generated/google/apis/content_v2/classes.rb', line 2565

def region
  @region
end

#street_addressArray<String>

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

Returns:

  • (Array<String>)


2570
2571
2572
# File 'generated/google/apis/content_v2/classes.rb', line 2570

def street_address
  @street_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
# File 'generated/google/apis/content_v2/classes.rb', line 2577

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