Class: Google::Apis::ContentV2_1::ReturnAddress

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

Overview

Return address resource.

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

Returns a new instance of ReturnAddress.



8609
8610
8611
# File 'generated/google/apis/content_v2_1/classes.rb', line 8609

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

Instance Attribute Details

#addressGoogle::Apis::ContentV2_1::ReturnAddressAddress

The address. Corresponds to the JSON property address



8580
8581
8582
# File 'generated/google/apis/content_v2_1/classes.rb', line 8580

def address
  @address
end

#countryString

The country of sale where the return address is applicable. Corresponds to the JSON property country

Returns:

  • (String)


8585
8586
8587
# File 'generated/google/apis/content_v2_1/classes.rb', line 8585

def country
  @country
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "content# returnAddress". Corresponds to the JSON property kind

Returns:

  • (String)


8591
8592
8593
# File 'generated/google/apis/content_v2_1/classes.rb', line 8591

def kind
  @kind
end

#labelString

The user-defined label of the return address. For the default address, use the label "default". Corresponds to the JSON property label

Returns:

  • (String)


8597
8598
8599
# File 'generated/google/apis/content_v2_1/classes.rb', line 8597

def label
  @label
end

#phone_numberString

The merchant's contact phone number regarding the return. Corresponds to the JSON property phoneNumber

Returns:

  • (String)


8602
8603
8604
# File 'generated/google/apis/content_v2_1/classes.rb', line 8602

def phone_number
  @phone_number
end

#return_address_idString

Return address ID generated by Google. Corresponds to the JSON property returnAddressId

Returns:

  • (String)


8607
8608
8609
# File 'generated/google/apis/content_v2_1/classes.rb', line 8607

def return_address_id
  @return_address_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8614
8615
8616
8617
8618
8619
8620
8621
# File 'generated/google/apis/content_v2_1/classes.rb', line 8614

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @country = args[:country] if args.key?(:country)
  @kind = args[:kind] if args.key?(:kind)
  @label = args[:label] if args.key?(:label)
  @phone_number = args[:phone_number] if args.key?(:phone_number)
  @return_address_id = args[:return_address_id] if args.key?(:return_address_id)
end