google-apis-merchantapi_accounts_v1beta 0.5.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +8 -0
 - data/lib/google/apis/merchantapi_accounts_v1beta/classes.rb +289 -35
 - data/lib/google/apis/merchantapi_accounts_v1beta/gem_version.rb +2 -2
 - data/lib/google/apis/merchantapi_accounts_v1beta/representations.rb +97 -5
 - data/lib/google/apis/merchantapi_accounts_v1beta/service.rb +72 -0
 - metadata +3 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 634b4e71ca9347b6912746e8e2ad1d45d84d024f7d01193e6da8305c7d0820d2
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: e78cc646e8f67f74652073e2b95f694f759ab8a6c9ce43aa7021f42a8d6b8950
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: c84d60ebdc3410a313e23329241bc5b432bcaabca1a85203b1e7207d4ce62a1ef23ac694780f01ef5a5b1334240d4eeba1f525ead4bfca6b5333bd876e7ea059
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 3ab007bdc3a438ac611dbb3ff56e4efd6d789553f30d15c8cbbb914c39063b5b5dbf2f4df5209c84934c91e0ee96377b42656bc381921e8e16e563e43d02cc38
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,5 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Release history for google-apis-merchantapi_accounts_v1beta
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ### v0.7.0 (2025-03-16)
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            * Regenerated from discovery document revision 20250311
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            ### v0.6.0 (2025-03-09)
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            * Regenerated from discovery document revision 20250301
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
       3 
11 
     | 
    
         
             
            ### v0.5.0 (2025-02-26)
         
     | 
| 
       4 
12 
     | 
    
         | 
| 
       5 
13 
     | 
    
         
             
            * Regenerated from discovery document revision 20250220
         
     | 
| 
         @@ -339,6 +339,185 @@ module Google 
     | 
|
| 
       339 
339 
     | 
    
         
             
                    end
         
     | 
| 
       340 
340 
     | 
    
         
             
                  end
         
     | 
| 
       341 
341 
     | 
    
         | 
| 
      
 342 
     | 
    
         
            +
                  # This improvement will attempt to automatically correct submitted images if
         
     | 
| 
      
 343 
     | 
    
         
            +
                  # they don't meet the [image requirements](https://support.google.com/merchants/
         
     | 
| 
      
 344 
     | 
    
         
            +
                  # answer/6324350), for example, removing overlays. If successful, the image will
         
     | 
| 
      
 345 
     | 
    
         
            +
                  # be replaced and approved. This improvement is only applied to images of
         
     | 
| 
      
 346 
     | 
    
         
            +
                  # disapproved offers. For more information see: [Automatic image improvements](
         
     | 
| 
      
 347 
     | 
    
         
            +
                  # https://support.google.com/merchants/answer/9242973)
         
     | 
| 
      
 348 
     | 
    
         
            +
                  class AutomaticImageImprovements
         
     | 
| 
      
 349 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 350 
     | 
    
         
            +
                  
         
     | 
| 
      
 351 
     | 
    
         
            +
                    # Settings for the Automatic Image Improvements.
         
     | 
| 
      
 352 
     | 
    
         
            +
                    # Corresponds to the JSON property `accountImageImprovementsSettings`
         
     | 
| 
      
 353 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::ImageImprovementsAccountLevelSettings]
         
     | 
| 
      
 354 
     | 
    
         
            +
                    attr_accessor :account_image_improvements_settings
         
     | 
| 
      
 355 
     | 
    
         
            +
                  
         
     | 
| 
      
 356 
     | 
    
         
            +
                    # Output only. The effective value of allow_automatic_image_improvements. If
         
     | 
| 
      
 357 
     | 
    
         
            +
                    # account_image_improvements_settings is present, then this value is the same.
         
     | 
| 
      
 358 
     | 
    
         
            +
                    # Otherwise, it represents the inherited value of the parent account. Read-only.
         
     | 
| 
      
 359 
     | 
    
         
            +
                    # Corresponds to the JSON property `effectiveAllowAutomaticImageImprovements`
         
     | 
| 
      
 360 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 361 
     | 
    
         
            +
                    attr_accessor :effective_allow_automatic_image_improvements
         
     | 
| 
      
 362 
     | 
    
         
            +
                    alias_method :effective_allow_automatic_image_improvements?, :effective_allow_automatic_image_improvements
         
     | 
| 
      
 363 
     | 
    
         
            +
                  
         
     | 
| 
      
 364 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 365 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 366 
     | 
    
         
            +
                    end
         
     | 
| 
      
 367 
     | 
    
         
            +
                  
         
     | 
| 
      
 368 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 369 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 370 
     | 
    
         
            +
                      @account_image_improvements_settings = args[:account_image_improvements_settings] if args.key?(:account_image_improvements_settings)
         
     | 
| 
      
 371 
     | 
    
         
            +
                      @effective_allow_automatic_image_improvements = args[:effective_allow_automatic_image_improvements] if args.key?(:effective_allow_automatic_image_improvements)
         
     | 
| 
      
 372 
     | 
    
         
            +
                    end
         
     | 
| 
      
 373 
     | 
    
         
            +
                  end
         
     | 
| 
      
 374 
     | 
    
         
            +
                  
         
     | 
| 
      
 375 
     | 
    
         
            +
                  # Collection of information related to the [automatic improvements](https://
         
     | 
| 
      
 376 
     | 
    
         
            +
                  # developers.google.com/shopping-content/guides/automatic-improvements) of an
         
     | 
| 
      
 377 
     | 
    
         
            +
                  # account.
         
     | 
| 
      
 378 
     | 
    
         
            +
                  class AutomaticImprovements
         
     | 
| 
      
 379 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 380 
     | 
    
         
            +
                  
         
     | 
| 
      
 381 
     | 
    
         
            +
                    # This improvement will attempt to automatically correct submitted images if
         
     | 
| 
      
 382 
     | 
    
         
            +
                    # they don't meet the [image requirements](https://support.google.com/merchants/
         
     | 
| 
      
 383 
     | 
    
         
            +
                    # answer/6324350), for example, removing overlays. If successful, the image will
         
     | 
| 
      
 384 
     | 
    
         
            +
                    # be replaced and approved. This improvement is only applied to images of
         
     | 
| 
      
 385 
     | 
    
         
            +
                    # disapproved offers. For more information see: [Automatic image improvements](
         
     | 
| 
      
 386 
     | 
    
         
            +
                    # https://support.google.com/merchants/answer/9242973)
         
     | 
| 
      
 387 
     | 
    
         
            +
                    # Corresponds to the JSON property `imageImprovements`
         
     | 
| 
      
 388 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticImageImprovements]
         
     | 
| 
      
 389 
     | 
    
         
            +
                    attr_accessor :image_improvements
         
     | 
| 
      
 390 
     | 
    
         
            +
                  
         
     | 
| 
      
 391 
     | 
    
         
            +
                    # Turning on [item updates](https://support.google.com/merchants/answer/3246284)
         
     | 
| 
      
 392 
     | 
    
         
            +
                    # allows Google to automatically update items for you. When item updates are on,
         
     | 
| 
      
 393 
     | 
    
         
            +
                    # Google uses the structured data markup on the website and advanced data
         
     | 
| 
      
 394 
     | 
    
         
            +
                    # extractors to update the price and availability of the items. When the item
         
     | 
| 
      
 395 
     | 
    
         
            +
                    # updates are off, items with mismatched data aren't shown.
         
     | 
| 
      
 396 
     | 
    
         
            +
                    # Corresponds to the JSON property `itemUpdates`
         
     | 
| 
      
 397 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticItemUpdates]
         
     | 
| 
      
 398 
     | 
    
         
            +
                    attr_accessor :item_updates
         
     | 
| 
      
 399 
     | 
    
         
            +
                  
         
     | 
| 
      
 400 
     | 
    
         
            +
                    # Identifier. The resource name of the automatic improvements. Format: `accounts/
         
     | 
| 
      
 401 
     | 
    
         
            +
                    # `account`/automaticImprovements`.
         
     | 
| 
      
 402 
     | 
    
         
            +
                    # Corresponds to the JSON property `name`
         
     | 
| 
      
 403 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 404 
     | 
    
         
            +
                    attr_accessor :name
         
     | 
| 
      
 405 
     | 
    
         
            +
                  
         
     | 
| 
      
 406 
     | 
    
         
            +
                    # Not available for MCAs [accounts](https://support.google.com/merchants/answer/
         
     | 
| 
      
 407 
     | 
    
         
            +
                    # 188487). By turning on [automatic shipping improvements](https://support.
         
     | 
| 
      
 408 
     | 
    
         
            +
                    # google.com/merchants/answer/10027038), you are allowing Google to improve the
         
     | 
| 
      
 409 
     | 
    
         
            +
                    # accuracy of your delivery times shown to shoppers using Google. More accurate
         
     | 
| 
      
 410 
     | 
    
         
            +
                    # delivery times, especially when faster, typically lead to better conversion
         
     | 
| 
      
 411 
     | 
    
         
            +
                    # rates. Google will improve your estimated delivery times based on various
         
     | 
| 
      
 412 
     | 
    
         
            +
                    # factors: * Delivery address of an order * Current handling time and shipping
         
     | 
| 
      
 413 
     | 
    
         
            +
                    # time settings * Estimated weekdays or business days * Parcel tracking data
         
     | 
| 
      
 414 
     | 
    
         
            +
                    # Corresponds to the JSON property `shippingImprovements`
         
     | 
| 
      
 415 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticShippingImprovements]
         
     | 
| 
      
 416 
     | 
    
         
            +
                    attr_accessor :shipping_improvements
         
     | 
| 
      
 417 
     | 
    
         
            +
                  
         
     | 
| 
      
 418 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 419 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 420 
     | 
    
         
            +
                    end
         
     | 
| 
      
 421 
     | 
    
         
            +
                  
         
     | 
| 
      
 422 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 423 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 424 
     | 
    
         
            +
                      @image_improvements = args[:image_improvements] if args.key?(:image_improvements)
         
     | 
| 
      
 425 
     | 
    
         
            +
                      @item_updates = args[:item_updates] if args.key?(:item_updates)
         
     | 
| 
      
 426 
     | 
    
         
            +
                      @name = args[:name] if args.key?(:name)
         
     | 
| 
      
 427 
     | 
    
         
            +
                      @shipping_improvements = args[:shipping_improvements] if args.key?(:shipping_improvements)
         
     | 
| 
      
 428 
     | 
    
         
            +
                    end
         
     | 
| 
      
 429 
     | 
    
         
            +
                  end
         
     | 
| 
      
 430 
     | 
    
         
            +
                  
         
     | 
| 
      
 431 
     | 
    
         
            +
                  # Turning on [item updates](https://support.google.com/merchants/answer/3246284)
         
     | 
| 
      
 432 
     | 
    
         
            +
                  # allows Google to automatically update items for you. When item updates are on,
         
     | 
| 
      
 433 
     | 
    
         
            +
                  # Google uses the structured data markup on the website and advanced data
         
     | 
| 
      
 434 
     | 
    
         
            +
                  # extractors to update the price and availability of the items. When the item
         
     | 
| 
      
 435 
     | 
    
         
            +
                  # updates are off, items with mismatched data aren't shown.
         
     | 
| 
      
 436 
     | 
    
         
            +
                  class AutomaticItemUpdates
         
     | 
| 
      
 437 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 438 
     | 
    
         
            +
                  
         
     | 
| 
      
 439 
     | 
    
         
            +
                    # Settings for the Automatic Item Updates.
         
     | 
| 
      
 440 
     | 
    
         
            +
                    # Corresponds to the JSON property `accountItemUpdatesSettings`
         
     | 
| 
      
 441 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::ItemUpdatesAccountLevelSettings]
         
     | 
| 
      
 442 
     | 
    
         
            +
                    attr_accessor :account_item_updates_settings
         
     | 
| 
      
 443 
     | 
    
         
            +
                  
         
     | 
| 
      
 444 
     | 
    
         
            +
                    # Output only. The effective value of allow_availability_updates. If
         
     | 
| 
      
 445 
     | 
    
         
            +
                    # account_item_updates_settings is present, then this value is the same.
         
     | 
| 
      
 446 
     | 
    
         
            +
                    # Otherwise, it represents the inherited value of the parent account. The
         
     | 
| 
      
 447 
     | 
    
         
            +
                    # default value is true if no settings are present. Read-only.
         
     | 
| 
      
 448 
     | 
    
         
            +
                    # Corresponds to the JSON property `effectiveAllowAvailabilityUpdates`
         
     | 
| 
      
 449 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 450 
     | 
    
         
            +
                    attr_accessor :effective_allow_availability_updates
         
     | 
| 
      
 451 
     | 
    
         
            +
                    alias_method :effective_allow_availability_updates?, :effective_allow_availability_updates
         
     | 
| 
      
 452 
     | 
    
         
            +
                  
         
     | 
| 
      
 453 
     | 
    
         
            +
                    # Output only. The effective value of allow_condition_updates. If
         
     | 
| 
      
 454 
     | 
    
         
            +
                    # account_item_updates_settings is present, then this value is the same.
         
     | 
| 
      
 455 
     | 
    
         
            +
                    # Otherwise, it represents the inherited value of the parent account. The
         
     | 
| 
      
 456 
     | 
    
         
            +
                    # default value is true if no settings are present. Read-only.
         
     | 
| 
      
 457 
     | 
    
         
            +
                    # Corresponds to the JSON property `effectiveAllowConditionUpdates`
         
     | 
| 
      
 458 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 459 
     | 
    
         
            +
                    attr_accessor :effective_allow_condition_updates
         
     | 
| 
      
 460 
     | 
    
         
            +
                    alias_method :effective_allow_condition_updates?, :effective_allow_condition_updates
         
     | 
| 
      
 461 
     | 
    
         
            +
                  
         
     | 
| 
      
 462 
     | 
    
         
            +
                    # Output only. The effective value of allow_price_updates. If
         
     | 
| 
      
 463 
     | 
    
         
            +
                    # account_item_updates_settings is present, then this value is the same.
         
     | 
| 
      
 464 
     | 
    
         
            +
                    # Otherwise, it represents the inherited value of the parent account. The
         
     | 
| 
      
 465 
     | 
    
         
            +
                    # default value is true if no settings are present. Read-only.
         
     | 
| 
      
 466 
     | 
    
         
            +
                    # Corresponds to the JSON property `effectiveAllowPriceUpdates`
         
     | 
| 
      
 467 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 468 
     | 
    
         
            +
                    attr_accessor :effective_allow_price_updates
         
     | 
| 
      
 469 
     | 
    
         
            +
                    alias_method :effective_allow_price_updates?, :effective_allow_price_updates
         
     | 
| 
      
 470 
     | 
    
         
            +
                  
         
     | 
| 
      
 471 
     | 
    
         
            +
                    # Output only. The effective value of allow_strict_availability_updates. If
         
     | 
| 
      
 472 
     | 
    
         
            +
                    # account_item_updates_settings is present, then this value is the same.
         
     | 
| 
      
 473 
     | 
    
         
            +
                    # Otherwise, it represents the inherited value of the parent account. The
         
     | 
| 
      
 474 
     | 
    
         
            +
                    # default value is true if no settings are present. Read-only.
         
     | 
| 
      
 475 
     | 
    
         
            +
                    # Corresponds to the JSON property `effectiveAllowStrictAvailabilityUpdates`
         
     | 
| 
      
 476 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 477 
     | 
    
         
            +
                    attr_accessor :effective_allow_strict_availability_updates
         
     | 
| 
      
 478 
     | 
    
         
            +
                    alias_method :effective_allow_strict_availability_updates?, :effective_allow_strict_availability_updates
         
     | 
| 
      
 479 
     | 
    
         
            +
                  
         
     | 
| 
      
 480 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 481 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 482 
     | 
    
         
            +
                    end
         
     | 
| 
      
 483 
     | 
    
         
            +
                  
         
     | 
| 
      
 484 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 485 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 486 
     | 
    
         
            +
                      @account_item_updates_settings = args[:account_item_updates_settings] if args.key?(:account_item_updates_settings)
         
     | 
| 
      
 487 
     | 
    
         
            +
                      @effective_allow_availability_updates = args[:effective_allow_availability_updates] if args.key?(:effective_allow_availability_updates)
         
     | 
| 
      
 488 
     | 
    
         
            +
                      @effective_allow_condition_updates = args[:effective_allow_condition_updates] if args.key?(:effective_allow_condition_updates)
         
     | 
| 
      
 489 
     | 
    
         
            +
                      @effective_allow_price_updates = args[:effective_allow_price_updates] if args.key?(:effective_allow_price_updates)
         
     | 
| 
      
 490 
     | 
    
         
            +
                      @effective_allow_strict_availability_updates = args[:effective_allow_strict_availability_updates] if args.key?(:effective_allow_strict_availability_updates)
         
     | 
| 
      
 491 
     | 
    
         
            +
                    end
         
     | 
| 
      
 492 
     | 
    
         
            +
                  end
         
     | 
| 
      
 493 
     | 
    
         
            +
                  
         
     | 
| 
      
 494 
     | 
    
         
            +
                  # Not available for MCAs [accounts](https://support.google.com/merchants/answer/
         
     | 
| 
      
 495 
     | 
    
         
            +
                  # 188487). By turning on [automatic shipping improvements](https://support.
         
     | 
| 
      
 496 
     | 
    
         
            +
                  # google.com/merchants/answer/10027038), you are allowing Google to improve the
         
     | 
| 
      
 497 
     | 
    
         
            +
                  # accuracy of your delivery times shown to shoppers using Google. More accurate
         
     | 
| 
      
 498 
     | 
    
         
            +
                  # delivery times, especially when faster, typically lead to better conversion
         
     | 
| 
      
 499 
     | 
    
         
            +
                  # rates. Google will improve your estimated delivery times based on various
         
     | 
| 
      
 500 
     | 
    
         
            +
                  # factors: * Delivery address of an order * Current handling time and shipping
         
     | 
| 
      
 501 
     | 
    
         
            +
                  # time settings * Estimated weekdays or business days * Parcel tracking data
         
     | 
| 
      
 502 
     | 
    
         
            +
                  class AutomaticShippingImprovements
         
     | 
| 
      
 503 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 504 
     | 
    
         
            +
                  
         
     | 
| 
      
 505 
     | 
    
         
            +
                    # Enables automatic shipping improvements.
         
     | 
| 
      
 506 
     | 
    
         
            +
                    # Corresponds to the JSON property `allowShippingImprovements`
         
     | 
| 
      
 507 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 508 
     | 
    
         
            +
                    attr_accessor :allow_shipping_improvements
         
     | 
| 
      
 509 
     | 
    
         
            +
                    alias_method :allow_shipping_improvements?, :allow_shipping_improvements
         
     | 
| 
      
 510 
     | 
    
         
            +
                  
         
     | 
| 
      
 511 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 512 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 513 
     | 
    
         
            +
                    end
         
     | 
| 
      
 514 
     | 
    
         
            +
                  
         
     | 
| 
      
 515 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 516 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 517 
     | 
    
         
            +
                      @allow_shipping_improvements = args[:allow_shipping_improvements] if args.key?(:allow_shipping_improvements)
         
     | 
| 
      
 518 
     | 
    
         
            +
                    end
         
     | 
| 
      
 519 
     | 
    
         
            +
                  end
         
     | 
| 
      
 520 
     | 
    
         
            +
                  
         
     | 
| 
       342 
521 
     | 
    
         
             
                  # Business days of the warehouse.
         
     | 
| 
       343 
522 
     | 
    
         
             
                  class BusinessDayConfig
         
     | 
| 
       344 
523 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
         @@ -1130,6 +1309,26 @@ module Google 
     | 
|
| 
       1130 
1309 
     | 
    
         
             
                    end
         
     | 
| 
       1131 
1310 
     | 
    
         
             
                  end
         
     | 
| 
       1132 
1311 
     | 
    
         | 
| 
      
 1312 
     | 
    
         
            +
                  # Settings for the Automatic Image Improvements.
         
     | 
| 
      
 1313 
     | 
    
         
            +
                  class ImageImprovementsAccountLevelSettings
         
     | 
| 
      
 1314 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 1315 
     | 
    
         
            +
                  
         
     | 
| 
      
 1316 
     | 
    
         
            +
                    # Enables automatic image improvements.
         
     | 
| 
      
 1317 
     | 
    
         
            +
                    # Corresponds to the JSON property `allowAutomaticImageImprovements`
         
     | 
| 
      
 1318 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 1319 
     | 
    
         
            +
                    attr_accessor :allow_automatic_image_improvements
         
     | 
| 
      
 1320 
     | 
    
         
            +
                    alias_method :allow_automatic_image_improvements?, :allow_automatic_image_improvements
         
     | 
| 
      
 1321 
     | 
    
         
            +
                  
         
     | 
| 
      
 1322 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 1323 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 1324 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1325 
     | 
    
         
            +
                  
         
     | 
| 
      
 1326 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 1327 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 1328 
     | 
    
         
            +
                      @allow_automatic_image_improvements = args[:allow_automatic_image_improvements] if args.key?(:allow_automatic_image_improvements)
         
     | 
| 
      
 1329 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1330 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1331 
     | 
    
         
            +
                  
         
     | 
| 
       1133 
1332 
     | 
    
         
             
                  # The impact of the issue on a region.
         
     | 
| 
       1134 
1333 
     | 
    
         
             
                  class Impact
         
     | 
| 
       1135 
1334 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
         @@ -1180,6 +1379,57 @@ module Google 
     | 
|
| 
       1180 
1379 
     | 
    
         
             
                    end
         
     | 
| 
       1181 
1380 
     | 
    
         
             
                  end
         
     | 
| 
       1182 
1381 
     | 
    
         | 
| 
      
 1382 
     | 
    
         
            +
                  # Settings for the Automatic Item Updates.
         
     | 
| 
      
 1383 
     | 
    
         
            +
                  class ItemUpdatesAccountLevelSettings
         
     | 
| 
      
 1384 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 1385 
     | 
    
         
            +
                  
         
     | 
| 
      
 1386 
     | 
    
         
            +
                    # If availability updates are enabled, any previous availability values get
         
     | 
| 
      
 1387 
     | 
    
         
            +
                    # overwritten if Google finds an out-of-stock annotation on the offer's page. If
         
     | 
| 
      
 1388 
     | 
    
         
            +
                    # additionally `allow_strict_availability_updates` field is set to true, values
         
     | 
| 
      
 1389 
     | 
    
         
            +
                    # get overwritten if Google finds an in-stock annotation on the offer’s page.
         
     | 
| 
      
 1390 
     | 
    
         
            +
                    # Corresponds to the JSON property `allowAvailabilityUpdates`
         
     | 
| 
      
 1391 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 1392 
     | 
    
         
            +
                    attr_accessor :allow_availability_updates
         
     | 
| 
      
 1393 
     | 
    
         
            +
                    alias_method :allow_availability_updates?, :allow_availability_updates
         
     | 
| 
      
 1394 
     | 
    
         
            +
                  
         
     | 
| 
      
 1395 
     | 
    
         
            +
                    # If condition updates are enabled, Google always updates item condition with
         
     | 
| 
      
 1396 
     | 
    
         
            +
                    # the condition detected from the details of your product.
         
     | 
| 
      
 1397 
     | 
    
         
            +
                    # Corresponds to the JSON property `allowConditionUpdates`
         
     | 
| 
      
 1398 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 1399 
     | 
    
         
            +
                    attr_accessor :allow_condition_updates
         
     | 
| 
      
 1400 
     | 
    
         
            +
                    alias_method :allow_condition_updates?, :allow_condition_updates
         
     | 
| 
      
 1401 
     | 
    
         
            +
                  
         
     | 
| 
      
 1402 
     | 
    
         
            +
                    # If price updates are enabled, Google always updates the active price with the
         
     | 
| 
      
 1403 
     | 
    
         
            +
                    # crawled information.
         
     | 
| 
      
 1404 
     | 
    
         
            +
                    # Corresponds to the JSON property `allowPriceUpdates`
         
     | 
| 
      
 1405 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 1406 
     | 
    
         
            +
                    attr_accessor :allow_price_updates
         
     | 
| 
      
 1407 
     | 
    
         
            +
                    alias_method :allow_price_updates?, :allow_price_updates
         
     | 
| 
      
 1408 
     | 
    
         
            +
                  
         
     | 
| 
      
 1409 
     | 
    
         
            +
                    # If `allow_availability_updates` is enabled, items are automatically updated in
         
     | 
| 
      
 1410 
     | 
    
         
            +
                    # all your Shopping target countries. By default, availability updates will only
         
     | 
| 
      
 1411 
     | 
    
         
            +
                    # be applied to items that are 'out of stock' on your website but 'in stock' on
         
     | 
| 
      
 1412 
     | 
    
         
            +
                    # Shopping. Set this to true to also update items that are 'in stock' on your
         
     | 
| 
      
 1413 
     | 
    
         
            +
                    # website, but 'out of stock' on Google Shopping. In order for this field to
         
     | 
| 
      
 1414 
     | 
    
         
            +
                    # have an effect, you must also set `allow_availability_updates`.
         
     | 
| 
      
 1415 
     | 
    
         
            +
                    # Corresponds to the JSON property `allowStrictAvailabilityUpdates`
         
     | 
| 
      
 1416 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 1417 
     | 
    
         
            +
                    attr_accessor :allow_strict_availability_updates
         
     | 
| 
      
 1418 
     | 
    
         
            +
                    alias_method :allow_strict_availability_updates?, :allow_strict_availability_updates
         
     | 
| 
      
 1419 
     | 
    
         
            +
                  
         
     | 
| 
      
 1420 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 1421 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 1422 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1423 
     | 
    
         
            +
                  
         
     | 
| 
      
 1424 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 1425 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 1426 
     | 
    
         
            +
                      @allow_availability_updates = args[:allow_availability_updates] if args.key?(:allow_availability_updates)
         
     | 
| 
      
 1427 
     | 
    
         
            +
                      @allow_condition_updates = args[:allow_condition_updates] if args.key?(:allow_condition_updates)
         
     | 
| 
      
 1428 
     | 
    
         
            +
                      @allow_price_updates = args[:allow_price_updates] if args.key?(:allow_price_updates)
         
     | 
| 
      
 1429 
     | 
    
         
            +
                      @allow_strict_availability_updates = args[:allow_strict_availability_updates] if args.key?(:allow_strict_availability_updates)
         
     | 
| 
      
 1430 
     | 
    
         
            +
                    end
         
     | 
| 
      
 1431 
     | 
    
         
            +
                  end
         
     | 
| 
      
 1432 
     | 
    
         
            +
                  
         
     | 
| 
       1183 
1433 
     | 
    
         
             
                  # Response message for the `ListAccountIssues` method.
         
     | 
| 
       1184 
1434 
     | 
    
         
             
                  class ListAccountIssuesResponse
         
     | 
| 
       1185 
1435 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
         @@ -1507,8 +1757,8 @@ module Google 
     | 
|
| 
       1507 
1757 
     | 
    
         
             
                    # @return [Array<String>]
         
     | 
| 
       1508 
1758 
     | 
    
         
             
                    attr_accessor :countries
         
     | 
| 
       1509 
1759 
     | 
    
         | 
| 
       1510 
     | 
    
         
            -
                    # The item conditions accepted for returns must not be empty unless 
     | 
| 
       1511 
     | 
    
         
            -
                    # return policy is 'noReturns'.
         
     | 
| 
      
 1760 
     | 
    
         
            +
                    # Optional. The item conditions accepted for returns must not be empty unless
         
     | 
| 
      
 1761 
     | 
    
         
            +
                    # the type of return policy is 'noReturns'.
         
     | 
| 
       1512 
1762 
     | 
    
         
             
                    # Corresponds to the JSON property `itemConditions`
         
     | 
| 
       1513 
1763 
     | 
    
         
             
                    # @return [Array<String>]
         
     | 
| 
       1514 
1764 
     | 
    
         
             
                    attr_accessor :item_conditions
         
     | 
| 
         @@ -1546,8 +1796,8 @@ module Google 
     | 
|
| 
       1546 
1796 
     | 
    
         
             
                    # @return [Google::Apis::MerchantapiAccountsV1beta::RestockingFee]
         
     | 
| 
       1547 
1797 
     | 
    
         
             
                    attr_accessor :restocking_fee
         
     | 
| 
       1548 
1798 
     | 
    
         | 
| 
       1549 
     | 
    
         
            -
                    # The return methods of how customers can return an item. This value 
     | 
| 
       1550 
     | 
    
         
            -
                    # to not be empty unless the type of return policy is noReturns.
         
     | 
| 
      
 1799 
     | 
    
         
            +
                    # Optional. The return methods of how customers can return an item. This value
         
     | 
| 
      
 1800 
     | 
    
         
            +
                    # is required to not be empty unless the type of return policy is noReturns.
         
     | 
| 
       1551 
1801 
     | 
    
         
             
                    # Corresponds to the JSON property `returnMethods`
         
     | 
| 
       1552 
1802 
     | 
    
         
             
                    # @return [Array<String>]
         
     | 
| 
       1553 
1803 
     | 
    
         
             
                    attr_accessor :return_methods
         
     | 
| 
         @@ -1916,22 +2166,31 @@ module Google 
     | 
|
| 
       1916 
2166 
     | 
    
         
             
                  class ProductChange
         
     | 
| 
       1917 
2167 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
       1918 
2168 
     | 
    
         | 
| 
       1919 
     | 
    
         
            -
                    # The new value of the changed resource or attribute.
         
     | 
| 
      
 2169 
     | 
    
         
            +
                    # The new value of the changed resource or attribute. If empty, it means that
         
     | 
| 
      
 2170 
     | 
    
         
            +
                    # the product was deleted. Will have one of these values : (`approved`, `pending`
         
     | 
| 
      
 2171 
     | 
    
         
            +
                    # , `disapproved`, ``)
         
     | 
| 
       1920 
2172 
     | 
    
         
             
                    # Corresponds to the JSON property `newValue`
         
     | 
| 
       1921 
2173 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1922 
2174 
     | 
    
         
             
                    attr_accessor :new_value
         
     | 
| 
       1923 
2175 
     | 
    
         | 
| 
       1924 
     | 
    
         
            -
                    # The old value of the changed resource or attribute.
         
     | 
| 
      
 2176 
     | 
    
         
            +
                    # The old value of the changed resource or attribute. If empty, it means that
         
     | 
| 
      
 2177 
     | 
    
         
            +
                    # the product was created. Will have one of these values : (`approved`, `pending`
         
     | 
| 
      
 2178 
     | 
    
         
            +
                    # , `disapproved`, ``)
         
     | 
| 
       1925 
2179 
     | 
    
         
             
                    # Corresponds to the JSON property `oldValue`
         
     | 
| 
       1926 
2180 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1927 
2181 
     | 
    
         
             
                    attr_accessor :old_value
         
     | 
| 
       1928 
2182 
     | 
    
         | 
| 
       1929 
     | 
    
         
            -
                    # Countries that have the change (if applicable)
         
     | 
| 
      
 2183 
     | 
    
         
            +
                    # Countries that have the change (if applicable). Represented in the ISO 3166
         
     | 
| 
      
 2184 
     | 
    
         
            +
                    # format.
         
     | 
| 
       1930 
2185 
     | 
    
         
             
                    # Corresponds to the JSON property `regionCode`
         
     | 
| 
       1931 
2186 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1932 
2187 
     | 
    
         
             
                    attr_accessor :region_code
         
     | 
| 
       1933 
2188 
     | 
    
         | 
| 
       1934 
     | 
    
         
            -
                    # Reporting contexts that have the change (if applicable)
         
     | 
| 
      
 2189 
     | 
    
         
            +
                    # Reporting contexts that have the change (if applicable). Currently this field
         
     | 
| 
      
 2190 
     | 
    
         
            +
                    # supports only (`SHOPPING_ADS`, `LOCAL_INVENTORY_ADS`, `YOUTUBE_SHOPPING`, `
         
     | 
| 
      
 2191 
     | 
    
         
            +
                    # YOUTUBE_CHECKOUT`, `YOUTUBE_AFFILIATE`) from the enum value [
         
     | 
| 
      
 2192 
     | 
    
         
            +
                    # ReportingContextEnum](/merchant/api/reference/rest/Shared.Types/
         
     | 
| 
      
 2193 
     | 
    
         
            +
                    # ReportingContextEnum)
         
     | 
| 
       1935 
2194 
     | 
    
         
             
                    # Corresponds to the JSON property `reportingContext`
         
     | 
| 
       1936 
2195 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1937 
2196 
     | 
    
         
             
                    attr_accessor :reporting_context
         
     | 
| 
         @@ -1971,13 +2230,15 @@ module Google 
     | 
|
| 
       1971 
2230 
     | 
    
         
             
                    # @return [Array<Google::Apis::MerchantapiAccountsV1beta::ProductChange>]
         
     | 
| 
       1972 
2231 
     | 
    
         
             
                    attr_accessor :changes
         
     | 
| 
       1973 
2232 
     | 
    
         | 
| 
       1974 
     | 
    
         
            -
                    # The time at which the event was generated.
         
     | 
| 
      
 2233 
     | 
    
         
            +
                    # The time at which the event was generated. If you want to order the
         
     | 
| 
      
 2234 
     | 
    
         
            +
                    # notification messages you receive you should rely on this field not on the
         
     | 
| 
      
 2235 
     | 
    
         
            +
                    # order of receiving the notifications.
         
     | 
| 
       1975 
2236 
     | 
    
         
             
                    # Corresponds to the JSON property `eventTime`
         
     | 
| 
       1976 
2237 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1977 
2238 
     | 
    
         
             
                    attr_accessor :event_time
         
     | 
| 
       1978 
2239 
     | 
    
         | 
| 
       1979 
     | 
    
         
            -
                    # The product expiration time. This field will not bet set if the 
     | 
| 
       1980 
     | 
    
         
            -
                    # is sent for a product deletion event.
         
     | 
| 
      
 2240 
     | 
    
         
            +
                    # Optional. The product expiration time. This field will not bet set if the
         
     | 
| 
      
 2241 
     | 
    
         
            +
                    # notification is sent for a product deletion event.
         
     | 
| 
       1981 
2242 
     | 
    
         
             
                    # Corresponds to the JSON property `expirationTime`
         
     | 
| 
       1982 
2243 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1983 
2244 
     | 
    
         
             
                    attr_accessor :expiration_time
         
     | 
| 
         @@ -1988,8 +2249,7 @@ module Google 
     | 
|
| 
       1988 
2249 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1989 
2250 
     | 
    
         
             
                    attr_accessor :managing_account
         
     | 
| 
       1990 
2251 
     | 
    
         | 
| 
       1991 
     | 
    
         
            -
                    # The product name. Format:  
     | 
| 
       1992 
     | 
    
         
            -
                    # `
         
     | 
| 
      
 2252 
     | 
    
         
            +
                    # The product name. Format: `accounts/`account`/products/`product``
         
     | 
| 
       1993 
2253 
     | 
    
         
             
                    # Corresponds to the JSON property `resource`
         
     | 
| 
       1994 
2254 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       1995 
2255 
     | 
    
         
             
                    attr_accessor :resource
         
     | 
| 
         @@ -2345,32 +2605,15 @@ module Google 
     | 
|
| 
       2345 
2605 
     | 
    
         
             
                    # with a zero month and a zero day. * A year and month, with a zero day (for
         
     | 
| 
       2346 
2606 
     | 
    
         
             
                    # example, a credit card expiration date). Related types: * google.type.
         
     | 
| 
       2347 
2607 
     | 
    
         
             
                    # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
         
     | 
| 
       2348 
     | 
    
         
            -
                    # Corresponds to the JSON property ` 
     | 
| 
      
 2608 
     | 
    
         
            +
                    # Corresponds to the JSON property `endDate`
         
     | 
| 
       2349 
2609 
     | 
    
         
             
                    # @return [Google::Apis::MerchantapiAccountsV1beta::Date]
         
     | 
| 
       2350 
     | 
    
         
            -
                    attr_accessor : 
     | 
| 
       2351 
     | 
    
         
            -
                  
         
     | 
| 
       2352 
     | 
    
         
            -
                    # Represents a whole or partial calendar date, such as a birthday. The time of
         
     | 
| 
       2353 
     | 
    
         
            -
                    # day and time zone are either specified elsewhere or are insignificant. The
         
     | 
| 
       2354 
     | 
    
         
            -
                    # date is relative to the Gregorian Calendar. This can represent one of the
         
     | 
| 
       2355 
     | 
    
         
            -
                    # following: * A full date, with non-zero year, month, and day values. * A month
         
     | 
| 
       2356 
     | 
    
         
            -
                    # and day, with a zero year (for example, an anniversary). * A year on its own,
         
     | 
| 
       2357 
     | 
    
         
            -
                    # with a zero month and a zero day. * A year and month, with a zero day (for
         
     | 
| 
       2358 
     | 
    
         
            -
                    # example, a credit card expiration date). Related types: * google.type.
         
     | 
| 
       2359 
     | 
    
         
            -
                    # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
         
     | 
| 
       2360 
     | 
    
         
            -
                    # Corresponds to the JSON property `end`
         
     | 
| 
       2361 
     | 
    
         
            -
                    # @return [Google::Apis::MerchantapiAccountsV1beta::Date]
         
     | 
| 
       2362 
     | 
    
         
            -
                    attr_accessor :end
         
     | 
| 
      
 2610 
     | 
    
         
            +
                    attr_accessor :end_date
         
     | 
| 
       2363 
2611 
     | 
    
         | 
| 
       2364 
2612 
     | 
    
         
             
                    # Required. Display name of this seasonal override in Merchant Center.
         
     | 
| 
       2365 
2613 
     | 
    
         
             
                    # Corresponds to the JSON property `label`
         
     | 
| 
       2366 
2614 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       2367 
2615 
     | 
    
         
             
                    attr_accessor :label
         
     | 
| 
       2368 
2616 
     | 
    
         | 
| 
       2369 
     | 
    
         
            -
                    # The available policies.
         
     | 
| 
       2370 
     | 
    
         
            -
                    # Corresponds to the JSON property `policy`
         
     | 
| 
       2371 
     | 
    
         
            -
                    # @return [Google::Apis::MerchantapiAccountsV1beta::Policy]
         
     | 
| 
       2372 
     | 
    
         
            -
                    attr_accessor :policy
         
     | 
| 
       2373 
     | 
    
         
            -
                  
         
     | 
| 
       2374 
2617 
     | 
    
         
             
                    # Number of days (from the delivery date) that the product can be returned.
         
     | 
| 
       2375 
2618 
     | 
    
         
             
                    # Corresponds to the JSON property `returnDays`
         
     | 
| 
       2376 
2619 
     | 
    
         
             
                    # @return [Fixnum]
         
     | 
| 
         @@ -2388,18 +2631,29 @@ module Google 
     | 
|
| 
       2388 
2631 
     | 
    
         
             
                    # @return [Google::Apis::MerchantapiAccountsV1beta::Date]
         
     | 
| 
       2389 
2632 
     | 
    
         
             
                    attr_accessor :return_until_date
         
     | 
| 
       2390 
2633 
     | 
    
         | 
| 
      
 2634 
     | 
    
         
            +
                    # Represents a whole or partial calendar date, such as a birthday. The time of
         
     | 
| 
      
 2635 
     | 
    
         
            +
                    # day and time zone are either specified elsewhere or are insignificant. The
         
     | 
| 
      
 2636 
     | 
    
         
            +
                    # date is relative to the Gregorian Calendar. This can represent one of the
         
     | 
| 
      
 2637 
     | 
    
         
            +
                    # following: * A full date, with non-zero year, month, and day values. * A month
         
     | 
| 
      
 2638 
     | 
    
         
            +
                    # and day, with a zero year (for example, an anniversary). * A year on its own,
         
     | 
| 
      
 2639 
     | 
    
         
            +
                    # with a zero month and a zero day. * A year and month, with a zero day (for
         
     | 
| 
      
 2640 
     | 
    
         
            +
                    # example, a credit card expiration date). Related types: * google.type.
         
     | 
| 
      
 2641 
     | 
    
         
            +
                    # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
         
     | 
| 
      
 2642 
     | 
    
         
            +
                    # Corresponds to the JSON property `startDate`
         
     | 
| 
      
 2643 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::Date]
         
     | 
| 
      
 2644 
     | 
    
         
            +
                    attr_accessor :start_date
         
     | 
| 
      
 2645 
     | 
    
         
            +
                  
         
     | 
| 
       2391 
2646 
     | 
    
         
             
                    def initialize(**args)
         
     | 
| 
       2392 
2647 
     | 
    
         
             
                       update!(**args)
         
     | 
| 
       2393 
2648 
     | 
    
         
             
                    end
         
     | 
| 
       2394 
2649 
     | 
    
         | 
| 
       2395 
2650 
     | 
    
         
             
                    # Update properties of this object
         
     | 
| 
       2396 
2651 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
       2397 
     | 
    
         
            -
                      @ 
     | 
| 
       2398 
     | 
    
         
            -
                      @end = args[:end] if args.key?(:end)
         
     | 
| 
      
 2652 
     | 
    
         
            +
                      @end_date = args[:end_date] if args.key?(:end_date)
         
     | 
| 
       2399 
2653 
     | 
    
         
             
                      @label = args[:label] if args.key?(:label)
         
     | 
| 
       2400 
     | 
    
         
            -
                      @policy = args[:policy] if args.key?(:policy)
         
     | 
| 
       2401 
2654 
     | 
    
         
             
                      @return_days = args[:return_days] if args.key?(:return_days)
         
     | 
| 
       2402 
2655 
     | 
    
         
             
                      @return_until_date = args[:return_until_date] if args.key?(:return_until_date)
         
     | 
| 
      
 2656 
     | 
    
         
            +
                      @start_date = args[:start_date] if args.key?(:start_date)
         
     | 
| 
       2403 
2657 
     | 
    
         
             
                    end
         
     | 
| 
       2404 
2658 
     | 
    
         
             
                  end
         
     | 
| 
       2405 
2659 
     | 
    
         | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module MerchantapiAccountsV1beta
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-merchantapi_accounts_v1beta gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.7.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.16.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20250311"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -70,6 +70,30 @@ module Google 
     | 
|
| 
       70 
70 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       71 
71 
     | 
    
         
             
                  end
         
     | 
| 
       72 
72 
     | 
    
         | 
| 
      
 73 
     | 
    
         
            +
                  class AutomaticImageImprovements
         
     | 
| 
      
 74 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 75 
     | 
    
         
            +
                  
         
     | 
| 
      
 76 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 77 
     | 
    
         
            +
                  end
         
     | 
| 
      
 78 
     | 
    
         
            +
                  
         
     | 
| 
      
 79 
     | 
    
         
            +
                  class AutomaticImprovements
         
     | 
| 
      
 80 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 81 
     | 
    
         
            +
                  
         
     | 
| 
      
 82 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 83 
     | 
    
         
            +
                  end
         
     | 
| 
      
 84 
     | 
    
         
            +
                  
         
     | 
| 
      
 85 
     | 
    
         
            +
                  class AutomaticItemUpdates
         
     | 
| 
      
 86 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 87 
     | 
    
         
            +
                  
         
     | 
| 
      
 88 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 89 
     | 
    
         
            +
                  end
         
     | 
| 
      
 90 
     | 
    
         
            +
                  
         
     | 
| 
      
 91 
     | 
    
         
            +
                  class AutomaticShippingImprovements
         
     | 
| 
      
 92 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 93 
     | 
    
         
            +
                  
         
     | 
| 
      
 94 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 95 
     | 
    
         
            +
                  end
         
     | 
| 
      
 96 
     | 
    
         
            +
                  
         
     | 
| 
       73 
97 
     | 
    
         
             
                  class BusinessDayConfig
         
     | 
| 
       74 
98 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       75 
99 
     | 
    
         | 
| 
         @@ -196,6 +220,12 @@ module Google 
     | 
|
| 
       196 
220 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       197 
221 
     | 
    
         
             
                  end
         
     | 
| 
       198 
222 
     | 
    
         | 
| 
      
 223 
     | 
    
         
            +
                  class ImageImprovementsAccountLevelSettings
         
     | 
| 
      
 224 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 225 
     | 
    
         
            +
                  
         
     | 
| 
      
 226 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 227 
     | 
    
         
            +
                  end
         
     | 
| 
      
 228 
     | 
    
         
            +
                  
         
     | 
| 
       199 
229 
     | 
    
         
             
                  class Impact
         
     | 
| 
       200 
230 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       201 
231 
     | 
    
         | 
| 
         @@ -208,6 +238,12 @@ module Google 
     | 
|
| 
       208 
238 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       209 
239 
     | 
    
         
             
                  end
         
     | 
| 
       210 
240 
     | 
    
         | 
| 
      
 241 
     | 
    
         
            +
                  class ItemUpdatesAccountLevelSettings
         
     | 
| 
      
 242 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 243 
     | 
    
         
            +
                  
         
     | 
| 
      
 244 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 245 
     | 
    
         
            +
                  end
         
     | 
| 
      
 246 
     | 
    
         
            +
                  
         
     | 
| 
       211 
247 
     | 
    
         
             
                  class ListAccountIssuesResponse
         
     | 
| 
       212 
248 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       213 
249 
     | 
    
         | 
| 
         @@ -583,6 +619,47 @@ module Google 
     | 
|
| 
       583 
619 
     | 
    
         
             
                    end
         
     | 
| 
       584 
620 
     | 
    
         
             
                  end
         
     | 
| 
       585 
621 
     | 
    
         | 
| 
      
 622 
     | 
    
         
            +
                  class AutomaticImageImprovements
         
     | 
| 
      
 623 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 624 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 625 
     | 
    
         
            +
                      property :account_image_improvements_settings, as: 'accountImageImprovementsSettings', class: Google::Apis::MerchantapiAccountsV1beta::ImageImprovementsAccountLevelSettings, decorator: Google::Apis::MerchantapiAccountsV1beta::ImageImprovementsAccountLevelSettings::Representation
         
     | 
| 
      
 626 
     | 
    
         
            +
                  
         
     | 
| 
      
 627 
     | 
    
         
            +
                      property :effective_allow_automatic_image_improvements, as: 'effectiveAllowAutomaticImageImprovements'
         
     | 
| 
      
 628 
     | 
    
         
            +
                    end
         
     | 
| 
      
 629 
     | 
    
         
            +
                  end
         
     | 
| 
      
 630 
     | 
    
         
            +
                  
         
     | 
| 
      
 631 
     | 
    
         
            +
                  class AutomaticImprovements
         
     | 
| 
      
 632 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 633 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 634 
     | 
    
         
            +
                      property :image_improvements, as: 'imageImprovements', class: Google::Apis::MerchantapiAccountsV1beta::AutomaticImageImprovements, decorator: Google::Apis::MerchantapiAccountsV1beta::AutomaticImageImprovements::Representation
         
     | 
| 
      
 635 
     | 
    
         
            +
                  
         
     | 
| 
      
 636 
     | 
    
         
            +
                      property :item_updates, as: 'itemUpdates', class: Google::Apis::MerchantapiAccountsV1beta::AutomaticItemUpdates, decorator: Google::Apis::MerchantapiAccountsV1beta::AutomaticItemUpdates::Representation
         
     | 
| 
      
 637 
     | 
    
         
            +
                  
         
     | 
| 
      
 638 
     | 
    
         
            +
                      property :name, as: 'name'
         
     | 
| 
      
 639 
     | 
    
         
            +
                      property :shipping_improvements, as: 'shippingImprovements', class: Google::Apis::MerchantapiAccountsV1beta::AutomaticShippingImprovements, decorator: Google::Apis::MerchantapiAccountsV1beta::AutomaticShippingImprovements::Representation
         
     | 
| 
      
 640 
     | 
    
         
            +
                  
         
     | 
| 
      
 641 
     | 
    
         
            +
                    end
         
     | 
| 
      
 642 
     | 
    
         
            +
                  end
         
     | 
| 
      
 643 
     | 
    
         
            +
                  
         
     | 
| 
      
 644 
     | 
    
         
            +
                  class AutomaticItemUpdates
         
     | 
| 
      
 645 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 646 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 647 
     | 
    
         
            +
                      property :account_item_updates_settings, as: 'accountItemUpdatesSettings', class: Google::Apis::MerchantapiAccountsV1beta::ItemUpdatesAccountLevelSettings, decorator: Google::Apis::MerchantapiAccountsV1beta::ItemUpdatesAccountLevelSettings::Representation
         
     | 
| 
      
 648 
     | 
    
         
            +
                  
         
     | 
| 
      
 649 
     | 
    
         
            +
                      property :effective_allow_availability_updates, as: 'effectiveAllowAvailabilityUpdates'
         
     | 
| 
      
 650 
     | 
    
         
            +
                      property :effective_allow_condition_updates, as: 'effectiveAllowConditionUpdates'
         
     | 
| 
      
 651 
     | 
    
         
            +
                      property :effective_allow_price_updates, as: 'effectiveAllowPriceUpdates'
         
     | 
| 
      
 652 
     | 
    
         
            +
                      property :effective_allow_strict_availability_updates, as: 'effectiveAllowStrictAvailabilityUpdates'
         
     | 
| 
      
 653 
     | 
    
         
            +
                    end
         
     | 
| 
      
 654 
     | 
    
         
            +
                  end
         
     | 
| 
      
 655 
     | 
    
         
            +
                  
         
     | 
| 
      
 656 
     | 
    
         
            +
                  class AutomaticShippingImprovements
         
     | 
| 
      
 657 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 658 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 659 
     | 
    
         
            +
                      property :allow_shipping_improvements, as: 'allowShippingImprovements'
         
     | 
| 
      
 660 
     | 
    
         
            +
                    end
         
     | 
| 
      
 661 
     | 
    
         
            +
                  end
         
     | 
| 
      
 662 
     | 
    
         
            +
                  
         
     | 
| 
       586 
663 
     | 
    
         
             
                  class BusinessDayConfig
         
     | 
| 
       587 
664 
     | 
    
         
             
                    # @private
         
     | 
| 
       588 
665 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -796,6 +873,13 @@ module Google 
     | 
|
| 
       796 
873 
     | 
    
         
             
                    end
         
     | 
| 
       797 
874 
     | 
    
         
             
                  end
         
     | 
| 
       798 
875 
     | 
    
         | 
| 
      
 876 
     | 
    
         
            +
                  class ImageImprovementsAccountLevelSettings
         
     | 
| 
      
 877 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 878 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 879 
     | 
    
         
            +
                      property :allow_automatic_image_improvements, as: 'allowAutomaticImageImprovements'
         
     | 
| 
      
 880 
     | 
    
         
            +
                    end
         
     | 
| 
      
 881 
     | 
    
         
            +
                  end
         
     | 
| 
      
 882 
     | 
    
         
            +
                  
         
     | 
| 
       799 
883 
     | 
    
         
             
                  class Impact
         
     | 
| 
       800 
884 
     | 
    
         
             
                    # @private
         
     | 
| 
       801 
885 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -813,6 +897,16 @@ module Google 
     | 
|
| 
       813 
897 
     | 
    
         
             
                    end
         
     | 
| 
       814 
898 
     | 
    
         
             
                  end
         
     | 
| 
       815 
899 
     | 
    
         | 
| 
      
 900 
     | 
    
         
            +
                  class ItemUpdatesAccountLevelSettings
         
     | 
| 
      
 901 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 902 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 903 
     | 
    
         
            +
                      property :allow_availability_updates, as: 'allowAvailabilityUpdates'
         
     | 
| 
      
 904 
     | 
    
         
            +
                      property :allow_condition_updates, as: 'allowConditionUpdates'
         
     | 
| 
      
 905 
     | 
    
         
            +
                      property :allow_price_updates, as: 'allowPriceUpdates'
         
     | 
| 
      
 906 
     | 
    
         
            +
                      property :allow_strict_availability_updates, as: 'allowStrictAvailabilityUpdates'
         
     | 
| 
      
 907 
     | 
    
         
            +
                    end
         
     | 
| 
      
 908 
     | 
    
         
            +
                  end
         
     | 
| 
      
 909 
     | 
    
         
            +
                  
         
     | 
| 
       816 
910 
     | 
    
         
             
                  class ListAccountIssuesResponse
         
     | 
| 
       817 
911 
     | 
    
         
             
                    # @private
         
     | 
| 
       818 
912 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -1113,16 +1207,14 @@ module Google 
     | 
|
| 
       1113 
1207 
     | 
    
         
             
                  class SeasonalOverride
         
     | 
| 
       1114 
1208 
     | 
    
         
             
                    # @private
         
     | 
| 
       1115 
1209 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
       1116 
     | 
    
         
            -
                      property : 
     | 
| 
       1117 
     | 
    
         
            -
                  
         
     | 
| 
       1118 
     | 
    
         
            -
                      property :end, as: 'end', class: Google::Apis::MerchantapiAccountsV1beta::Date, decorator: Google::Apis::MerchantapiAccountsV1beta::Date::Representation
         
     | 
| 
      
 1210 
     | 
    
         
            +
                      property :end_date, as: 'endDate', class: Google::Apis::MerchantapiAccountsV1beta::Date, decorator: Google::Apis::MerchantapiAccountsV1beta::Date::Representation
         
     | 
| 
       1119 
1211 
     | 
    
         | 
| 
       1120 
1212 
     | 
    
         
             
                      property :label, as: 'label'
         
     | 
| 
       1121 
     | 
    
         
            -
                      property :policy, as: 'policy', class: Google::Apis::MerchantapiAccountsV1beta::Policy, decorator: Google::Apis::MerchantapiAccountsV1beta::Policy::Representation
         
     | 
| 
       1122 
     | 
    
         
            -
                  
         
     | 
| 
       1123 
1213 
     | 
    
         
             
                      property :return_days, as: 'returnDays'
         
     | 
| 
       1124 
1214 
     | 
    
         
             
                      property :return_until_date, as: 'returnUntilDate', class: Google::Apis::MerchantapiAccountsV1beta::Date, decorator: Google::Apis::MerchantapiAccountsV1beta::Date::Representation
         
     | 
| 
       1125 
1215 
     | 
    
         | 
| 
      
 1216 
     | 
    
         
            +
                      property :start_date, as: 'startDate', class: Google::Apis::MerchantapiAccountsV1beta::Date, decorator: Google::Apis::MerchantapiAccountsV1beta::Date::Representation
         
     | 
| 
      
 1217 
     | 
    
         
            +
                  
         
     | 
| 
       1126 
1218 
     | 
    
         
             
                    end
         
     | 
| 
       1127 
1219 
     | 
    
         
             
                  end
         
     | 
| 
       1128 
1220 
     | 
    
         | 
| 
         @@ -152,6 +152,37 @@ module Google 
     | 
|
| 
       152 
152 
     | 
    
         
             
                      execute_or_queue_command(command, &block)
         
     | 
| 
       153 
153 
     | 
    
         
             
                    end
         
     | 
| 
       154 
154 
     | 
    
         | 
| 
      
 155 
     | 
    
         
            +
                    # Retrieves the automatic improvements of an account.
         
     | 
| 
      
 156 
     | 
    
         
            +
                    # @param [String] name
         
     | 
| 
      
 157 
     | 
    
         
            +
                    #   Required. The resource name of the automatic improvements. Format: `accounts/`
         
     | 
| 
      
 158 
     | 
    
         
            +
                    #   account`/automaticImprovements`
         
     | 
| 
      
 159 
     | 
    
         
            +
                    # @param [String] fields
         
     | 
| 
      
 160 
     | 
    
         
            +
                    #   Selector specifying which fields to include in a partial response.
         
     | 
| 
      
 161 
     | 
    
         
            +
                    # @param [String] quota_user
         
     | 
| 
      
 162 
     | 
    
         
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         
     | 
| 
      
 163 
     | 
    
         
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         
     | 
| 
      
 164 
     | 
    
         
            +
                    # @param [Google::Apis::RequestOptions] options
         
     | 
| 
      
 165 
     | 
    
         
            +
                    #   Request-specific options
         
     | 
| 
      
 166 
     | 
    
         
            +
                    #
         
     | 
| 
      
 167 
     | 
    
         
            +
                    # @yield [result, err] Result & error if block supplied
         
     | 
| 
      
 168 
     | 
    
         
            +
                    # @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] parsed result object
         
     | 
| 
      
 169 
     | 
    
         
            +
                    # @yieldparam err [StandardError] error object if request failed
         
     | 
| 
      
 170 
     | 
    
         
            +
                    #
         
     | 
| 
      
 171 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements]
         
     | 
| 
      
 172 
     | 
    
         
            +
                    #
         
     | 
| 
      
 173 
     | 
    
         
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         
     | 
| 
      
 174 
     | 
    
         
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         
     | 
| 
      
 175 
     | 
    
         
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         
     | 
| 
      
 176 
     | 
    
         
            +
                    def get_account_automatic_improvements(name, fields: nil, quota_user: nil, options: nil, &block)
         
     | 
| 
      
 177 
     | 
    
         
            +
                      command = make_simple_command(:get, 'accounts/v1beta/{+name}', options)
         
     | 
| 
      
 178 
     | 
    
         
            +
                      command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
         
     | 
| 
      
 179 
     | 
    
         
            +
                      command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements
         
     | 
| 
      
 180 
     | 
    
         
            +
                      command.params['name'] = name unless name.nil?
         
     | 
| 
      
 181 
     | 
    
         
            +
                      command.query['fields'] = fields unless fields.nil?
         
     | 
| 
      
 182 
     | 
    
         
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         
     | 
| 
      
 183 
     | 
    
         
            +
                      execute_or_queue_command(command, &block)
         
     | 
| 
      
 184 
     | 
    
         
            +
                    end
         
     | 
| 
      
 185 
     | 
    
         
            +
                    
         
     | 
| 
       155 
186 
     | 
    
         
             
                    # Lists accounts accessible to the calling user and matching the constraints of
         
     | 
| 
       156 
187 
     | 
    
         
             
                    # the request such as page size or filters. This is not just listing the sub-
         
     | 
| 
       157 
188 
     | 
    
         
             
                    # accounts of an MCA, but all accounts the calling user has access to including
         
     | 
| 
         @@ -287,6 +318,47 @@ module Google 
     | 
|
| 
       287 
318 
     | 
    
         
             
                      execute_or_queue_command(command, &block)
         
     | 
| 
       288 
319 
     | 
    
         
             
                    end
         
     | 
| 
       289 
320 
     | 
    
         | 
| 
      
 321 
     | 
    
         
            +
                    # Updates the automatic improvements of an account.
         
     | 
| 
      
 322 
     | 
    
         
            +
                    # @param [String] name
         
     | 
| 
      
 323 
     | 
    
         
            +
                    #   Identifier. The resource name of the automatic improvements. Format: `accounts/
         
     | 
| 
      
 324 
     | 
    
         
            +
                    #   `account`/automaticImprovements`.
         
     | 
| 
      
 325 
     | 
    
         
            +
                    # @param [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] automatic_improvements_object
         
     | 
| 
      
 326 
     | 
    
         
            +
                    # @param [String] update_mask
         
     | 
| 
      
 327 
     | 
    
         
            +
                    #   Required. List of fields being updated. The following fields are supported (in
         
     | 
| 
      
 328 
     | 
    
         
            +
                    #   both `snake_case` and `lowerCamelCase`): - `item_updates` - `item_updates.
         
     | 
| 
      
 329 
     | 
    
         
            +
                    #   account_level_settings` - `image_improvements` - `image_improvements.
         
     | 
| 
      
 330 
     | 
    
         
            +
                    #   account_level_settings` - `shipping_improvements` - `shipping_improvements.
         
     | 
| 
      
 331 
     | 
    
         
            +
                    #   allow_shipping_improvements`
         
     | 
| 
      
 332 
     | 
    
         
            +
                    # @param [String] fields
         
     | 
| 
      
 333 
     | 
    
         
            +
                    #   Selector specifying which fields to include in a partial response.
         
     | 
| 
      
 334 
     | 
    
         
            +
                    # @param [String] quota_user
         
     | 
| 
      
 335 
     | 
    
         
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         
     | 
| 
      
 336 
     | 
    
         
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         
     | 
| 
      
 337 
     | 
    
         
            +
                    # @param [Google::Apis::RequestOptions] options
         
     | 
| 
      
 338 
     | 
    
         
            +
                    #   Request-specific options
         
     | 
| 
      
 339 
     | 
    
         
            +
                    #
         
     | 
| 
      
 340 
     | 
    
         
            +
                    # @yield [result, err] Result & error if block supplied
         
     | 
| 
      
 341 
     | 
    
         
            +
                    # @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] parsed result object
         
     | 
| 
      
 342 
     | 
    
         
            +
                    # @yieldparam err [StandardError] error object if request failed
         
     | 
| 
      
 343 
     | 
    
         
            +
                    #
         
     | 
| 
      
 344 
     | 
    
         
            +
                    # @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements]
         
     | 
| 
      
 345 
     | 
    
         
            +
                    #
         
     | 
| 
      
 346 
     | 
    
         
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         
     | 
| 
      
 347 
     | 
    
         
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         
     | 
| 
      
 348 
     | 
    
         
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         
     | 
| 
      
 349 
     | 
    
         
            +
                    def update_account_automatic_improvements(name, automatic_improvements_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
         
     | 
| 
      
 350 
     | 
    
         
            +
                      command = make_simple_command(:patch, 'accounts/v1beta/{+name}', options)
         
     | 
| 
      
 351 
     | 
    
         
            +
                      command.request_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
         
     | 
| 
      
 352 
     | 
    
         
            +
                      command.request_object = automatic_improvements_object
         
     | 
| 
      
 353 
     | 
    
         
            +
                      command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
         
     | 
| 
      
 354 
     | 
    
         
            +
                      command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements
         
     | 
| 
      
 355 
     | 
    
         
            +
                      command.params['name'] = name unless name.nil?
         
     | 
| 
      
 356 
     | 
    
         
            +
                      command.query['updateMask'] = update_mask unless update_mask.nil?
         
     | 
| 
      
 357 
     | 
    
         
            +
                      command.query['fields'] = fields unless fields.nil?
         
     | 
| 
      
 358 
     | 
    
         
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         
     | 
| 
      
 359 
     | 
    
         
            +
                      execute_or_queue_command(command, &block)
         
     | 
| 
      
 360 
     | 
    
         
            +
                    end
         
     | 
| 
      
 361 
     | 
    
         
            +
                    
         
     | 
| 
       290 
362 
     | 
    
         
             
                    # Retrieves the autofeed settings of an account.
         
     | 
| 
       291 
363 
     | 
    
         
             
                    # @param [String] name
         
     | 
| 
       292 
364 
     | 
    
         
             
                    #   Required. The resource name of the autofeed settings. Format: `accounts/`
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-merchantapi_accounts_v1beta
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.7.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Google LLC
         
     | 
| 
       8 
8 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       9 
9 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       10 
     | 
    
         
            -
            date: 2025-03- 
     | 
| 
      
 10 
     | 
    
         
            +
            date: 2025-03-16 00:00:00.000000000 Z
         
     | 
| 
       11 
11 
     | 
    
         
             
            dependencies:
         
     | 
| 
       12 
12 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       13 
13 
     | 
    
         
             
              name: google-apis-core
         
     | 
| 
         @@ -57,7 +57,7 @@ licenses: 
     | 
|
| 
       57 
57 
     | 
    
         
             
            metadata:
         
     | 
| 
       58 
58 
     | 
    
         
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         
     | 
| 
       59 
59 
     | 
    
         
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_accounts_v1beta/CHANGELOG.md
         
     | 
| 
       60 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_accounts_v1beta/v0. 
     | 
| 
      
 60 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_accounts_v1beta/v0.7.0
         
     | 
| 
       61 
61 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_accounts_v1beta
         
     | 
| 
       62 
62 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       63 
63 
     | 
    
         
             
            require_paths:
         
     |