Class: Google::Apis::ContentV2_1::ProductShipping

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

Returns a new instance of ProductShipping.



7645
7646
7647
# File 'generated/google/apis/content_v2_1/classes.rb', line 7645

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

Instance Attribute Details

#countryString

The CLDR territory code of the country to which an item will ship. Corresponds to the JSON property country

Returns:

  • (String)


7609
7610
7611
# File 'generated/google/apis/content_v2_1/classes.rb', line 7609

def country
  @country
end

#location_group_nameString

The location where the shipping is applicable, represented by a location group name. Corresponds to the JSON property locationGroupName

Returns:

  • (String)


7615
7616
7617
# File 'generated/google/apis/content_v2_1/classes.rb', line 7615

def location_group_name
  @location_group_name
end

#location_idFixnum

The numeric ID of a location that the shipping rate applies to as defined in the AdWords API. Corresponds to the JSON property locationId

Returns:

  • (Fixnum)


7621
7622
7623
# File 'generated/google/apis/content_v2_1/classes.rb', line 7621

def location_id
  @location_id
end

#postal_codeString

The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length. Corresponds to the JSON property postalCode

Returns:

  • (String)


7628
7629
7630
# File 'generated/google/apis/content_v2_1/classes.rb', line 7628

def postal_code
  @postal_code
end

#priceGoogle::Apis::ContentV2_1::Price

Fixed shipping price, represented as a number. Corresponds to the JSON property price



7633
7634
7635
# File 'generated/google/apis/content_v2_1/classes.rb', line 7633

def price
  @price
end

#regionString

The geographic region to which a shipping rate applies. Corresponds to the JSON property region

Returns:

  • (String)


7638
7639
7640
# File 'generated/google/apis/content_v2_1/classes.rb', line 7638

def region
  @region
end

#serviceString

A free-form description of the service class or delivery speed. Corresponds to the JSON property service

Returns:

  • (String)


7643
7644
7645
# File 'generated/google/apis/content_v2_1/classes.rb', line 7643

def service
  @service
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7650
7651
7652
7653
7654
7655
7656
7657
7658
# File 'generated/google/apis/content_v2_1/classes.rb', line 7650

def update!(**args)
  @country = args[:country] if args.key?(:country)
  @location_group_name = args[:location_group_name] if args.key?(:location_group_name)
  @location_id = args[:location_id] if args.key?(:location_id)
  @postal_code = args[:postal_code] if args.key?(:postal_code)
  @price = args[:price] if args.key?(:price)
  @region = args[:region] if args.key?(:region)
  @service = args[:service] if args.key?(:service)
end