class Google::Apis::ContentV2_1::LiaCountrySettings

Attributes

about[RW]

The settings for the About page. Corresponds to the JSON property `about` @return [Google::Apis::ContentV2_1::LiaAboutPageSettings]

country[RW]

Required. CLDR country code (e.g. “US”). Corresponds to the JSON property `country` @return [String]

hosted_local_storefront_active[RW]

The status of the “Merchant hosted local storefront” feature. Corresponds to the JSON property `hostedLocalStorefrontActive` @return [Boolean]

hosted_local_storefront_active?[RW]

The status of the “Merchant hosted local storefront” feature. Corresponds to the JSON property `hostedLocalStorefrontActive` @return [Boolean]

inventory[RW]

LIA inventory verification settings. Corresponds to the JSON property `inventory` @return [Google::Apis::ContentV2_1::LiaInventorySettings]

on_display_to_order[RW]

LIA “On Display To Order” settings. Corresponds to the JSON property `onDisplayToOrder` @return [Google::Apis::ContentV2_1::LiaOnDisplayToOrderSettings]

pos_data_provider[RW]

The POS data provider linked with this country. Corresponds to the JSON property `posDataProvider` @return [Google::Apis::ContentV2_1::LiaPosDataProvider]

store_pickup_active[RW]

The status of the “Store pickup” feature. Corresponds to the JSON property `storePickupActive` @return [Boolean]

store_pickup_active?[RW]

The status of the “Store pickup” feature. Corresponds to the JSON property `storePickupActive` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 3751
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 3756
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)
  @pos_data_provider = args[:pos_data_provider] if args.key?(:pos_data_provider)
  @store_pickup_active = args[:store_pickup_active] if args.key?(:store_pickup_active)
end