Class: Google::Apis::ContentV2::LiaCountrySettings

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

Returns a new instance of LiaCountrySettings



2600
2601
2602
# File 'generated/google/apis/content_v2/classes.rb', line 2600

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

Instance Attribute Details

#aboutGoogle::Apis::ContentV2::LiaAboutPageSettings

The settings for the About page. Corresponds to the JSON property about



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

def about
  @about
end

#countryString

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

Returns:

  • (String)


2576
2577
2578
# File 'generated/google/apis/content_v2/classes.rb', line 2576

def country
  @country
end

#hosted_local_storefront_activeBoolean Also known as: hosted_local_storefront_active?

The status of the "Merchant hosted local storefront" feature. Corresponds to the JSON property hostedLocalStorefrontActive

Returns:

  • (Boolean)


2581
2582
2583
# File 'generated/google/apis/content_v2/classes.rb', line 2581

def hosted_local_storefront_active
  @hosted_local_storefront_active
end

#inventoryGoogle::Apis::ContentV2::LiaInventorySettings

LIA inventory verification settings. Corresponds to the JSON property inventory



2587
2588
2589
# File 'generated/google/apis/content_v2/classes.rb', line 2587

def inventory
  @inventory
end

#on_display_to_orderGoogle::Apis::ContentV2::LiaOnDisplayToOrderSettings

LIA "On Display To Order" settings. Corresponds to the JSON property onDisplayToOrder



2592
2593
2594
# File 'generated/google/apis/content_v2/classes.rb', line 2592

def on_display_to_order
  @on_display_to_order
end

#store_pickup_activeBoolean Also known as: store_pickup_active?

The status of the "Store pickup" feature. Corresponds to the JSON property storePickupActive

Returns:

  • (Boolean)


2597
2598
2599
# File 'generated/google/apis/content_v2/classes.rb', line 2597

def store_pickup_active
  @store_pickup_active
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2605
2606
2607
2608
2609
2610
2611
2612
# File 'generated/google/apis/content_v2/classes.rb', line 2605

def update!(**args)
  @about = args[:about] if args.key?(:about)
  @country = args[:country] if args.key?(:country)
  @hosted_local_storefront_active = args[:hosted_local_storefront_active] if args.key?(:hosted_local_storefront_active)
  @inventory = args[:inventory] if args.key?(:inventory)
  @on_display_to_order = args[:on_display_to_order] if args.key?(:on_display_to_order)
  @store_pickup_active = args[:store_pickup_active] if args.key?(:store_pickup_active)
end