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

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LiaCountrySettings

Returns a new instance of LiaCountrySettings.



3105
3106
3107
# File 'lib/google/apis/content_v2/classes.rb', line 3105

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



3071
3072
3073
# File 'lib/google/apis/content_v2/classes.rb', line 3071

def about
  @about
end

#countryString

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

Returns:

  • (String)


3076
3077
3078
# File 'lib/google/apis/content_v2/classes.rb', line 3076

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)


3081
3082
3083
# File 'lib/google/apis/content_v2/classes.rb', line 3081

def hosted_local_storefront_active
  @hosted_local_storefront_active
end

#inventoryGoogle::Apis::ContentV2::LiaInventorySettings

LIA inventory verification settings. Corresponds to the JSON property inventory



3087
3088
3089
# File 'lib/google/apis/content_v2/classes.rb', line 3087

def inventory
  @inventory
end

#on_display_to_orderGoogle::Apis::ContentV2::LiaOnDisplayToOrderSettings

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



3092
3093
3094
# File 'lib/google/apis/content_v2/classes.rb', line 3092

def on_display_to_order
  @on_display_to_order
end

#pos_data_providerGoogle::Apis::ContentV2::LiaPosDataProvider

The POS data provider linked with this country. Corresponds to the JSON property posDataProvider



3097
3098
3099
# File 'lib/google/apis/content_v2/classes.rb', line 3097

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


3102
3103
3104
# File 'lib/google/apis/content_v2/classes.rb', line 3102

def store_pickup_active
  @store_pickup_active
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3110
3111
3112
3113
3114
3115
3116
3117
3118
# File 'lib/google/apis/content_v2/classes.rb', line 3110

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