google-shopping-merchant-products-v1 0.2.0 → 0.3.1
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/lib/google/shopping/merchant/products/v1/product_inputs_service/client.rb +20 -3
 - data/lib/google/shopping/merchant/products/v1/products_common_pb.rb +4 -1
 - data/lib/google/shopping/merchant/products/v1/products_service/client.rb +20 -3
 - data/lib/google/shopping/merchant/products/v1/version.rb +1 -1
 - data/proto_docs/google/shopping/merchant/products/v1/products_common.rb +433 -0
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: c2f8a84a0d07d83a1966c6d02b185056586de2e32294e170fb0593449dc1fb5f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 9ed18a2b296edcd932c54786379152e58742c359c3bfe1c3354ca73e5268f56f
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: f59d24885371d409705c633910c424c6846912786f60e04f4ce6b2ba677c0c5e0f60ba4d72088e14f06cab0ce1cd01190ff4c3772e40c0917485a25e4d39730b
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 74fe4295ace2961ca7b15b074edff4f9fa2b009b831e9e9788849c033abfb64e874b57bd7abd17254c9960991fb1a60d07413a047eda71b833e535113bfd4f75
         
     | 
| 
         @@ -546,8 +546,6 @@ module Google 
     | 
|
| 
       546 
546 
     | 
    
         
             
                          #   @return [::String,nil]
         
     | 
| 
       547 
547 
     | 
    
         
             
                          # @!attribute [rw] credentials
         
     | 
| 
       548 
548 
     | 
    
         
             
                          #   Credentials to send with calls. You may provide any of the following types:
         
     | 
| 
       549 
     | 
    
         
            -
                          #    *  (`String`) The path to a service account key file in JSON format
         
     | 
| 
       550 
     | 
    
         
            -
                          #    *  (`Hash`) A service account key as a Hash
         
     | 
| 
       551 
549 
     | 
    
         
             
                          #    *  (`Google::Auth::Credentials`) A googleauth credentials object
         
     | 
| 
       552 
550 
     | 
    
         
             
                          #       (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
         
     | 
| 
       553 
551 
     | 
    
         
             
                          #    *  (`Signet::OAuth2::Client`) A signet oauth2 client object
         
     | 
| 
         @@ -556,7 +554,26 @@ module Google 
     | 
|
| 
       556 
554 
     | 
    
         
             
                          #    *  (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
         
     | 
| 
       557 
555 
     | 
    
         
             
                          #    *  (`nil`) indicating no credentials
         
     | 
| 
       558 
556 
     | 
    
         
             
                          #
         
     | 
| 
       559 
     | 
    
         
            -
                          #   Warning:  
     | 
| 
      
 557 
     | 
    
         
            +
                          #   @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
         
     | 
| 
      
 558 
     | 
    
         
            +
                          #     is deprecated. Providing an unvalidated credential configuration to
         
     | 
| 
      
 559 
     | 
    
         
            +
                          #     Google APIs can compromise the security of your systems and data.
         
     | 
| 
      
 560 
     | 
    
         
            +
                          #
         
     | 
| 
      
 561 
     | 
    
         
            +
                          #   @example
         
     | 
| 
      
 562 
     | 
    
         
            +
                          #
         
     | 
| 
      
 563 
     | 
    
         
            +
                          #     # The recommended way to provide credentials is to use the `make_creds` method
         
     | 
| 
      
 564 
     | 
    
         
            +
                          #     # on the appropriate credentials class for your environment.
         
     | 
| 
      
 565 
     | 
    
         
            +
                          #
         
     | 
| 
      
 566 
     | 
    
         
            +
                          #     require "googleauth"
         
     | 
| 
      
 567 
     | 
    
         
            +
                          #
         
     | 
| 
      
 568 
     | 
    
         
            +
                          #     credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
         
     | 
| 
      
 569 
     | 
    
         
            +
                          #       json_key_io: ::File.open("/path/to/keyfile.json")
         
     | 
| 
      
 570 
     | 
    
         
            +
                          #     )
         
     | 
| 
      
 571 
     | 
    
         
            +
                          #
         
     | 
| 
      
 572 
     | 
    
         
            +
                          #     client = ::Google::Shopping::Merchant::Products::V1::ProductInputsService::Client.new do |config|
         
     | 
| 
      
 573 
     | 
    
         
            +
                          #       config.credentials = credentials
         
     | 
| 
      
 574 
     | 
    
         
            +
                          #     end
         
     | 
| 
      
 575 
     | 
    
         
            +
                          #
         
     | 
| 
      
 576 
     | 
    
         
            +
                          #   @note Warning: If you accept a credential configuration (JSON file or Hash) from an
         
     | 
| 
       560 
577 
     | 
    
         
             
                          #   external source for authentication to Google Cloud, you must validate it before
         
     | 
| 
       561 
578 
     | 
    
         
             
                          #   providing it to a Google API client library. Providing an unvalidated credential
         
     | 
| 
       562 
579 
     | 
    
         
             
                          #   configuration to Google APIs can compromise the security of your systems and data.
         
     | 
| 
         @@ -10,7 +10,7 @@ require 'google/shopping/type/types_pb' 
     | 
|
| 
       10 
10 
     | 
    
         
             
            require 'google/type/interval_pb'
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
            descriptor_data = "\n:google/shopping/merchant/products/v1/products_common.proto\x12$google.shopping.merchant.products.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a google/shopping/type/types.proto\x1a\x1agoogle/type/interval.proto\"\xe0,\n\x11ProductAttributes\x12\x1e\n\x11identifier_exists\x18\x04 \x01(\x08H\x00\x88\x01\x01\x12\x16\n\tis_bundle\x18\x05 \x01(\x08H\x01\x88\x01\x01\x12\x12\n\x05title\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x07 \x01(\tH\x03\x88\x01\x01\x12\x11\n\x04link\x18\x08 \x01(\tH\x04\x88\x01\x01\x12\x18\n\x0bmobile_link\x18\t \x01(\tH\x05\x88\x01\x01\x12\x1b\n\x0e\x63\x61nonical_link\x18\n \x01(\tH\x06\x88\x01\x01\x12\x17\n\nimage_link\x18\x0b \x01(\tH\x07\x88\x01\x01\x12\x1e\n\x16\x61\x64\x64itional_image_links\x18\x0c \x03(\t\x12\x33\n\x0f\x65xpiration_date\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0f\x64isclosure_date\x18O \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\x05\x61\x64ult\x18\x11 \x01(\x08H\x08\x88\x01\x01\x12\x46\n\tage_group\x18\x12 \x01(\x0e\x32..google.shopping.merchant.products.v1.AgeGroupH\t\x88\x01\x01\x12M\n\x0c\x61vailability\x18\x13 \x01(\x0e\x32\x32.google.shopping.merchant.products.v1.AvailabilityH\n\x88\x01\x01\x12\x35\n\x11\x61vailability_date\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\x05\x62rand\x18\x15 \x01(\tH\x0b\x88\x01\x01\x12\x12\n\x05\x63olor\x18\x16 \x01(\tH\x0c\x88\x01\x01\x12G\n\tcondition\x18\x17 \x01(\x0e\x32/.google.shopping.merchant.products.v1.ConditionH\r\x88\x01\x01\x12\x41\n\x06gender\x18\x18 \x01(\x0e\x32,.google.shopping.merchant.products.v1.GenderH\x0e\x88\x01\x01\x12$\n\x17google_product_category\x18\x19 \x01(\tH\x0f\x88\x01\x01\x12\x0e\n\x05gtins\x18\x8c\x01 \x03(\t\x12\x1a\n\ritem_group_id\x18\x1b \x01(\tH\x10\x88\x01\x01\x12\x15\n\x08material\x18\x1c \x01(\tH\x11\x88\x01\x01\x12\x10\n\x03mpn\x18\x1d \x01(\tH\x12\x88\x01\x01\x12\x14\n\x07pattern\x18\x1e \x01(\tH\x13\x88\x01\x01\x12*\n\x05price\x18\x1f \x01(\x0b\x32\x1b.google.shopping.type.Price\x12:\n\x14maximum_retail_price\x18\x8b\x01 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12M\n\x0binstallment\x18  \x01(\x0b\x32\x38.google.shopping.merchant.products.v1.ProductInstallment\x12Q\n\x11subscription_cost\x18! \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.SubscriptionCost\x12K\n\x0eloyalty_points\x18\" \x01(\x0b\x32\x33.google.shopping.merchant.products.v1.LoyaltyPoints\x12O\n\x10loyalty_programs\x18\x88\x01 \x03(\x0b\x32\x34.google.shopping.merchant.products.v1.LoyaltyProgram\x12\x15\n\rproduct_types\x18# \x03(\t\x12/\n\nsale_price\x18$ \x01(\x0b\x32\x1b.google.shopping.type.Price\x12\x38\n\x19sale_price_effective_date\x18% \x01(\x0b\x32\x15.google.type.Interval\x12$\n\x17sell_on_google_quantity\x18& \x01(\x03H\x14\x88\x01\x01\x12N\n\x0eproduct_height\x18w \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.ProductDimension\x12N\n\x0eproduct_length\x18x \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.ProductDimension\x12M\n\rproduct_width\x18y \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.ProductDimension\x12K\n\x0eproduct_weight\x18z \x01(\x0b\x32\x33.google.shopping.merchant.products.v1.ProductWeight\x12@\n\x08shipping\x18\' \x03(\x0b\x32..google.shopping.merchant.products.v1.Shipping\x12]\n\x17\x66ree_shipping_threshold\x18\x87\x01 \x03(\x0b\x32;.google.shopping.merchant.products.v1.FreeShippingThreshold\x12M\n\x0fshipping_weight\x18( \x01(\x0b\x32\x34.google.shopping.merchant.products.v1.ShippingWeight\x12P\n\x0fshipping_length\x18) \x01(\x0b\x32\x37.google.shopping.merchant.products.v1.ShippingDimension\x12O\n\x0eshipping_width\x18* \x01(\x0b\x32\x37.google.shopping.merchant.products.v1.ShippingDimension\x12P\n\x0fshipping_height\x18+ \x01(\x0b\x32\x37.google.shopping.merchant.products.v1.ShippingDimension\x12\x1e\n\x11max_handling_time\x18, \x01(\x03H\x15\x88\x01\x01\x12\x1e\n\x11min_handling_time\x18- \x01(\x03H\x16\x88\x01\x01\x12\x1b\n\x0eshipping_label\x18. \x01(\tH\x17\x88\x01\x01\x12\x1f\n\x12transit_time_label\x18/ \x01(\tH\x18\x88\x01\x01\x12\x11\n\x04size\x18\x30 \x01(\tH\x19\x88\x01\x01\x12J\n\x0bsize_system\x18\x31 \x01(\x0e\x32\x30.google.shopping.merchant.products.v1.SizeSystemH\x1a\x88\x01\x01\x12\x42\n\nsize_types\x18\x32 \x03(\x0e\x32..google.shopping.merchant.products.v1.SizeType\x12\x61\n\x17\x65nergy_efficiency_class\x18\x35 \x01(\x0e\x32;.google.shopping.merchant.products.v1.EnergyEfficiencyClassH\x1b\x88\x01\x01\x12\x65\n\x1bmin_energy_efficiency_class\x18\x36 \x01(\x0e\x32;.google.shopping.merchant.products.v1.EnergyEfficiencyClassH\x1c\x88\x01\x01\x12\x65\n\x1bmax_energy_efficiency_class\x18\x37 \x01(\x0e\x32;.google.shopping.merchant.products.v1.EnergyEfficiencyClassH\x1d\x88\x01\x01\x12V\n\x14unit_pricing_measure\x18\x38 \x01(\x0b\x32\x38.google.shopping.merchant.products.v1.UnitPricingMeasure\x12_\n\x19unit_pricing_base_measure\x18\x39 \x01(\x0b\x32<.google.shopping.merchant.products.v1.UnitPricingBaseMeasure\x12\x16\n\tmultipack\x18: \x01(\x03H\x1e\x88\x01\x01\x12\x19\n\x0c\x61\x64s_grouping\x18; \x01(\tH\x1f\x88\x01\x01\x12\x12\n\nads_labels\x18< \x03(\t\x12\x19\n\x0c\x61\x64s_redirect\x18= \x01(\tH \x88\x01\x01\x12\x37\n\x12\x63ost_of_goods_sold\x18> \x01(\x0b\x32\x1b.google.shopping.type.Price\x12L\n\x0fproduct_details\x18? \x03(\x0b\x32\x33.google.shopping.merchant.products.v1.ProductDetail\x12\x1a\n\x12product_highlights\x18@ \x03(\t\x12\x1b\n\x0e\x64isplay_ads_id\x18\x41 \x01(\tH!\x88\x01\x01\x12\x1f\n\x17\x64isplay_ads_similar_ids\x18\x42 \x03(\t\x12\x1e\n\x11\x64isplay_ads_title\x18\x43 \x01(\tH\"\x88\x01\x01\x12\x1d\n\x10\x64isplay_ads_link\x18\x44 \x01(\tH#\x88\x01\x01\x12\x1e\n\x11\x64isplay_ads_value\x18\x45 \x01(\x01H$\x88\x01\x01\x12\x15\n\rpromotion_ids\x18\x46 \x03(\t\x12N\n\rpickup_method\x18P \x01(\x0e\x32\x32.google.shopping.merchant.products.v1.PickupMethodH%\x88\x01\x01\x12H\n\npickup_sla\x18Q \x01(\x0e\x32/.google.shopping.merchant.products.v1.PickupSlaH&\x88\x01\x01\x12\x1a\n\rlink_template\x18R \x01(\tH\'\x88\x01\x01\x12!\n\x14mobile_link_template\x18S \x01(\tH(\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_0\x18G \x01(\tH)\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_1\x18H \x01(\tH*\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_2\x18I \x01(\tH+\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_3\x18J \x01(\tH,\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_4\x18K \x01(\tH-\x88\x01\x01\x12P\n\x15included_destinations\x18L \x03(\x0e\x32\x31.google.shopping.type.Destination.DestinationEnum\x12P\n\x15\x65xcluded_destinations\x18M \x03(\x0e\x32\x31.google.shopping.type.Destination.DestinationEnum\x12\'\n\x1fshopping_ads_excluded_countries\x18N \x03(\t\x12\x1f\n\x12\x65xternal_seller_id\x18\x01 \x01(\tH.\x88\x01\x01\x12?\n\x05pause\x18\r \x01(\x0e\x32+.google.shopping.merchant.products.v1.PauseH/\x88\x01\x01\x12\x1d\n\x15lifestyle_image_links\x18\x0e \x03(\t\x12q\n\"cloud_export_additional_properties\x18T \x03(\x0b\x32\x45.google.shopping.merchant.products.v1.CloudExportAdditionalProperties\x12 \n\x12virtual_model_link\x18\x82\x01 \x01(\tH0\x88\x01\x01\x12R\n\x0e\x63\x65rtifications\x18{ \x03(\x0b\x32:.google.shopping.merchant.products.v1.ProductCertification\x12U\n\x10structured_title\x18\x84\x01 \x01(\x0b\x32\x35.google.shopping.merchant.products.v1.StructuredTitleH1\x88\x01\x01\x12\x61\n\x16structured_description\x18\x85\x01 \x01(\x0b\x32;.google.shopping.merchant.products.v1.StructuredDescriptionH2\x88\x01\x01\x12;\n\x16\x61uto_pricing_min_price\x18| \x01(\x0b\x32\x1b.google.shopping.type.Price\x12h\n\x19sustainability_incentives\x18\x8a\x01 \x03(\x0b\x32\x44.google.shopping.merchant.products.v1.ProductSustainabilityIncentiveB\x14\n\x12_identifier_existsB\x0c\n\n_is_bundleB\x08\n\x06_titleB\x0e\n\x0c_descriptionB\x07\n\x05_linkB\x0e\n\x0c_mobile_linkB\x11\n\x0f_canonical_linkB\r\n\x0b_image_linkB\x08\n\x06_adultB\x0c\n\n_age_groupB\x0f\n\r_availabilityB\x08\n\x06_brandB\x08\n\x06_colorB\x0c\n\n_conditionB\t\n\x07_genderB\x1a\n\x18_google_product_categoryB\x10\n\x0e_item_group_idB\x0b\n\t_materialB\x06\n\x04_mpnB\n\n\x08_patternB\x1a\n\x18_sell_on_google_quantityB\x14\n\x12_max_handling_timeB\x14\n\x12_min_handling_timeB\x11\n\x0f_shipping_labelB\x15\n\x13_transit_time_labelB\x07\n\x05_sizeB\x0e\n\x0c_size_systemB\x1a\n\x18_energy_efficiency_classB\x1e\n\x1c_min_energy_efficiency_classB\x1e\n\x1c_max_energy_efficiency_classB\x0c\n\n_multipackB\x0f\n\r_ads_groupingB\x0f\n\r_ads_redirectB\x11\n\x0f_display_ads_idB\x14\n\x12_display_ads_titleB\x13\n\x11_display_ads_linkB\x14\n\x12_display_ads_valueB\x10\n\x0e_pickup_methodB\r\n\x0b_pickup_slaB\x10\n\x0e_link_templateB\x17\n\x15_mobile_link_templateB\x11\n\x0f_custom_label_0B\x11\n\x0f_custom_label_1B\x11\n\x0f_custom_label_2B\x11\n\x0f_custom_label_3B\x11\n\x0f_custom_label_4B\x15\n\x13_external_seller_idB\x08\n\x06_pauseB\x15\n\x13_virtual_model_linkB\x13\n\x11_structured_titleB\x19\n\x17_structured_description\"-\n\x0eShippingWeight\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0c\n\x04unit\x18\x02 \x01(\t\"0\n\x11ShippingDimension\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0c\n\x04unit\x18\x02 \x01(\t\"5\n\x16UnitPricingBaseMeasure\x12\r\n\x05value\x18\x01 \x01(\x03\x12\x0c\n\x04unit\x18\x02 \x01(\t\"1\n\x12UnitPricingMeasure\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0c\n\x04unit\x18\x02 \x01(\t\"\xa0\x01\n\x10SubscriptionCost\x12H\n\x06period\x18\x01 \x01(\x0e\x32\x38.google.shopping.merchant.products.v1.SubscriptionPeriod\x12\x15\n\rperiod_length\x18\x02 \x01(\x03\x12+\n\x06\x61mount\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.Price\"\xf4\x01\n\x12ProductInstallment\x12\x0e\n\x06months\x18\x01 \x01(\x03\x12+\n\x06\x61mount\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12\x35\n\x0b\x64ownpayment\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x00\x88\x01\x01\x12J\n\x0b\x63redit_type\x18\x04 \x01(\x0e\x32\x30.google.shopping.merchant.products.v1.CreditTypeH\x01\x88\x01\x01\x42\x0e\n\x0c_downpaymentB\x0e\n\x0c_credit_type\"B\n\rLoyaltyPoints\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0cpoints_value\x18\x02 \x01(\x03\x12\r\n\x05ratio\x18\x03 \x01(\x01\"\xc1\x03\n\x0eLoyaltyProgram\x12\x1a\n\rprogram_label\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x17\n\ntier_label\x18\x02 \x01(\tH\x01\x88\x01\x01\x12/\n\x05price\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x02\x88\x01\x01\x12\x41\n\x17\x63\x61shback_for_future_use\x18\x04 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x03\x88\x01\x01\x12\x1b\n\x0eloyalty_points\x18\x05 \x01(\x03H\x04\x88\x01\x01\x12?\n\x1bmember_price_effective_date\x18\x06 \x01(\x0b\x32\x15.google.type.IntervalH\x05\x88\x01\x01\x12\x1b\n\x0eshipping_label\x18\x07 \x01(\tH\x06\x88\x01\x01\x42\x10\n\x0e_program_labelB\r\n\x0b_tier_labelB\x08\n\x06_priceB\x1a\n\x18_cashback_for_future_useB\x11\n\x0f_loyalty_pointsB\x1e\n\x1c_member_price_effective_dateB\x11\n\x0f_shipping_label\"\x83\x03\n\x08Shipping\x12*\n\x05price\x18\x01 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12\x0f\n\x07\x63ountry\x18\x02 \x01(\t\x12\x0e\n\x06region\x18\x03 \x01(\t\x12\x0f\n\x07service\x18\x04 \x01(\t\x12\x13\n\x0blocation_id\x18\x05 \x01(\x03\x12\x1b\n\x13location_group_name\x18\x06 \x01(\t\x12\x13\n\x0bpostal_code\x18\x07 \x01(\t\x12\x1e\n\x11min_handling_time\x18\x08 \x01(\x03H\x00\x88\x01\x01\x12\x1e\n\x11max_handling_time\x18\t \x01(\x03H\x01\x88\x01\x01\x12\x1d\n\x10min_transit_time\x18\n \x01(\x03H\x02\x88\x01\x01\x12\x1d\n\x10max_transit_time\x18\x0b \x01(\x03H\x03\x88\x01\x01\x42\x14\n\x12_min_handling_timeB\x14\n\x12_max_handling_timeB\x13\n\x11_min_transit_timeB\x13\n\x11_max_transit_time\"\x88\x01\n\x15\x46reeShippingThreshold\x12\x14\n\x07\x63ountry\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x39\n\x0fprice_threshold\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x01\x88\x01\x01\x42\n\n\x08_countryB\x12\n\x10_price_threshold\"V\n\rProductDetail\x12\x14\n\x0csection_name\x18\x01 \x01(\t\x12\x16\n\x0e\x61ttribute_name\x18\x02 \x01(\t\x12\x17\n\x0f\x61ttribute_value\x18\x03 \x01(\t\"\xf9\x02\n\x14ProductCertification\x12\x62\n\x17\x63\x65rtification_authority\x18\x01 \x01(\x0e\x32<.google.shopping.merchant.products.v1.CertificationAuthorityH\x00\x88\x01\x01\x12X\n\x12\x63\x65rtification_name\x18\x02 \x01(\x0e\x32\x37.google.shopping.merchant.products.v1.CertificationNameH\x01\x88\x01\x01\x12\x1f\n\x12\x63\x65rtification_code\x18\x03 \x01(\tH\x02\x88\x01\x01\x12 \n\x13\x63\x65rtification_value\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x1a\n\x18_certification_authorityB\x15\n\x13_certification_nameB\x15\n\x13_certification_codeB\x16\n\x14_certification_value\"\xa6\x01\n\x0fStructuredTitle\x12Y\n\x13\x64igital_source_type\x18\x01 \x01(\x0e\x32\x37.google.shopping.merchant.products.v1.DigitalSourceTypeH\x00\x88\x01\x01\x12\x14\n\x07\x63ontent\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x16\n\x14_digital_source_typeB\n\n\x08_content\"\xac\x01\n\x15StructuredDescription\x12Y\n\x13\x64igital_source_type\x18\x01 \x01(\x0e\x32\x37.google.shopping.merchant.products.v1.DigitalSourceTypeH\x00\x88\x01\x01\x12\x14\n\x07\x63ontent\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x16\n\x14_digital_source_typeB\n\n\x08_content\"9\n\x10ProductDimension\x12\x12\n\x05value\x18\x01 \x01(\x01\x42\x03\xe0\x41\x02\x12\x11\n\x04unit\x18\x02 \x01(\tB\x03\xe0\x41\x02\"6\n\rProductWeight\x12\x12\n\x05value\x18\x01 \x01(\x01\x42\x03\xe0\x41\x02\x12\x11\n\x04unit\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xeb\x07\n\rProductStatus\x12\x63\n\x14\x64\x65stination_statuses\x18\x03 \x03(\x0b\x32\x45.google.shopping.merchant.products.v1.ProductStatus.DestinationStatus\x12]\n\x11item_level_issues\x18\x04 \x03(\x0b\x32\x42.google.shopping.merchant.products.v1.ProductStatus.ItemLevelIssue\x12\x31\n\rcreation_date\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x10last_update_date\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16google_expiration_date\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a\xc1\x01\n\x11\x44\x65stinationStatus\x12V\n\x11reporting_context\x18\x01 \x01(\x0e\x32;.google.shopping.type.ReportingContext.ReportingContextEnum\x12\x1a\n\x12\x61pproved_countries\x18\x02 \x03(\t\x12\x19\n\x11pending_countries\x18\x03 \x03(\t\x12\x1d\n\x15\x64isapproved_countries\x18\x04 \x03(\t\x1a\xac\x03\n\x0eItemLevelIssue\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12]\n\x08severity\x18\x02 \x01(\x0e\x32K.google.shopping.merchant.products.v1.ProductStatus.ItemLevelIssue.Severity\x12\x12\n\nresolution\x18\x03 \x01(\t\x12\x11\n\tattribute\x18\x04 \x01(\t\x12V\n\x11reporting_context\x18\x05 \x01(\x0e\x32;.google.shopping.type.ReportingContext.ReportingContextEnum\x12\x13\n\x0b\x64\x65scription\x18\x06 \x01(\t\x12\x0e\n\x06\x64\x65tail\x18\x07 \x01(\t\x12\x15\n\rdocumentation\x18\x08 \x01(\t\x12\x1c\n\x14\x61pplicable_countries\x18\t \x03(\t\"T\n\x08Severity\x12\x18\n\x14SEVERITY_UNSPECIFIED\x10\x00\x12\x10\n\x0cNOT_IMPACTED\x10\x01\x12\x0b\n\x07\x44\x45MOTED\x10\x02\x12\x0f\n\x0b\x44ISAPPROVED\x10\x03\"\xa5\x02\n\x1f\x43loudExportAdditionalProperties\x12\x1a\n\rproperty_name\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x12\n\ntext_value\x18\x02 \x03(\t\x12\x17\n\nbool_value\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\tint_value\x18\x04 \x03(\x03\x12\x13\n\x0b\x66loat_value\x18\x05 \x03(\x02\x12\x16\n\tmin_value\x18\x06 \x01(\x02H\x02\x88\x01\x01\x12\x16\n\tmax_value\x18\x07 \x01(\x02H\x03\x88\x01\x01\x12\x16\n\tunit_code\x18\x08 \x01(\tH\x04\x88\x01\x01\x42\x10\n\x0e_property_nameB\r\n\x0b_bool_valueB\x0c\n\n_min_valueB\x0c\n\n_max_valueB\x0c\n\n_unit_code\"\x9d\x02\n\x1eProductSustainabilityIncentive\x12-\n\x06\x61mount\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x00\x12\x14\n\npercentage\x18\x03 \x01(\x01H\x00\x12\\\n\x04type\x18\x01 \x01(\x0e\x32I.google.shopping.merchant.products.v1.ProductSustainabilityIncentive.TypeH\x01\x88\x01\x01\"F\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x11\n\rEV_TAX_CREDIT\x10\x01\x12\x15\n\x11\x45V_PRICE_DISCOUNT\x10\x02\x42\x07\n\x05valueB\x07\n\x05_type\"\xb4\x01\n\x12\x41utomatedDiscounts\x12\x30\n\x0bprior_price\x18\x01 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12<\n\x17prior_price_progressive\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12.\n\tgad_price\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.Price*N\n\x12SubscriptionPeriod\x12#\n\x1fSUBSCRIPTION_PERIOD_UNSPECIFIED\x10\x00\x12\t\n\x05MONTH\x10\x01\x12\x08\n\x04YEAR\x10\x02*`\n\x08\x41geGroup\x12\x19\n\x15\x41GE_GROUP_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44ULT\x10\x01\x12\x08\n\x04KIDS\x10\x02\x12\x0b\n\x07TODDLER\x10\x03\x12\n\n\x06INFANT\x10\x04\x12\x0b\n\x07NEWBORN\x10\x05*\x83\x01\n\x0c\x41vailability\x12\x1c\n\x18\x41VAILABILITY_UNSPECIFIED\x10\x00\x12\x0c\n\x08IN_STOCK\x10\x01\x12\x10\n\x0cOUT_OF_STOCK\x10\x02\x12\x0c\n\x08PREORDER\x10\x03\x12\x18\n\x14LIMITED_AVAILABILITY\x10\x04\x12\r\n\tBACKORDER\x10\x05*J\n\tCondition\x12\x19\n\x15\x43ONDITION_UNSPECIFIED\x10\x00\x12\x07\n\x03NEW\x10\x01\x12\x08\n\x04USED\x10\x02\x12\x0f\n\x0bREFURBISHED\x10\x03*B\n\x06Gender\x12\x16\n\x12GENDER_UNSPECIFIED\x10\x00\x12\x08\n\x04MALE\x10\x01\x12\n\n\x06\x46\x45MALE\x10\x02\x12\n\n\x06UNISEX\x10\x03*A\n\nCreditType\x12\x1b\n\x17\x43REDIT_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x46INANCE\x10\x01\x12\t\n\x05LEASE\x10\x02*\x82\x01\n\nSizeSystem\x12\x1b\n\x17SIZE_SYSTEM_UNSPECIFIED\x10\x00\x12\x06\n\x02\x41U\x10\x01\x12\x06\n\x02\x42R\x10\x02\x12\x06\n\x02\x43N\x10\x03\x12\x06\n\x02\x44\x45\x10\x04\x12\x06\n\x02\x45U\x10\x05\x12\x06\n\x02\x46R\x10\x06\x12\x06\n\x02IT\x10\x07\x12\x06\n\x02JP\x10\x08\x12\x07\n\x03MEX\x10\t\x12\x06\n\x02UK\x10\n\x12\x06\n\x02US\x10\x0b*j\n\x08SizeType\x12\x19\n\x15SIZE_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07REGULAR\x10\x01\x12\n\n\x06PETITE\x10\x02\x12\r\n\tMATERNITY\x10\x03\x12\x07\n\x03\x42IG\x10\x04\x12\x08\n\x04TALL\x10\x05\x12\x08\n\x04PLUS\x10\x06*\x8c\x01\n\x15\x45nergyEfficiencyClass\x12\'\n#ENERGY_EFFICIENCY_CLASS_UNSPECIFIED\x10\x00\x12\x08\n\x04\x41PPP\x10\x01\x12\x07\n\x03\x41PP\x10\x02\x12\x06\n\x02\x41P\x10\x03\x12\x05\n\x01\x41\x10\x04\x12\x05\n\x01\x42\x10\x05\x12\x05\n\x01\x43\x10\x06\x12\x05\n\x01\x44\x10\x07\x12\x05\n\x01\x45\x10\x08\x12\x05\n\x01\x46\x10\t\x12\x05\n\x01G\x10\n*i\n\x0cPickupMethod\x12\x1d\n\x19PICKUP_METHOD_UNSPECIFIED\x10\x00\x12\x11\n\rNOT_SUPPORTED\x10\x01\x12\x07\n\x03\x42UY\x10\x02\x12\x0b\n\x07RESERVE\x10\x03\x12\x11\n\rSHIP_TO_STORE\x10\x04*\x98\x01\n\tPickupSla\x12\x1a\n\x16PICKUP_SLA_UNSPECIFIED\x10\x00\x12\x0c\n\x08SAME_DAY\x10\x01\x12\x0c\n\x08NEXT_DAY\x10\x02\x12\x0b\n\x07TWO_DAY\x10\x03\x12\r\n\tTHREE_DAY\x10\x04\x12\x0c\n\x08\x46OUR_DAY\x10\x05\x12\x0c\n\x08\x46IVE_DAY\x10\x06\x12\x0b\n\x07SIX_DAY\x10\x07\x12\x0e\n\nMULTI_WEEK\x10\x08*0\n\x05Pause\x12\x15\n\x11PAUSE_UNSPECIFIED\x10\x00\x12\x07\n\x03\x41\x44S\x10\x01\x12\x07\n\x03\x41LL\x10\x02*g\n\x16\x43\x65rtificationAuthority\x12\'\n#CERTIFICATION_AUTHORITY_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44\x45ME\x10\x01\x12\x08\n\x04\x42MWK\x10\x02\x12\x07\n\x03\x45PA\x10\x03\x12\x06\n\x02\x45\x43\x10\x04*\xd5\x01\n\x11\x43\x65rtificationName\x12\"\n\x1e\x43\x45RTIFICATION_NAME_UNSPECIFIED\x10\x00\x12\x0f\n\x0b\x45NERGY_STAR\x10\x01\x12\x1e\n\x1a\x45NERGY_STAR_MOST_EFFICIENT\x10\x02\x12\t\n\x05\x45PREL\x10\x03\x12\x0f\n\x0b\x45U_ECOLABEL\x10\x04\x12\x1d\n\x19VEHICLE_ENERGY_EFFICIENCY\x10\x05\x12\x30\n,VEHICLE_ENERGY_EFFICIENCY_DISCHARGED_BATTERY\x10\x06*d\n\x11\x44igitalSourceType\x12#\n\x1f\x44IGITAL_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1d\n\x19TRAINED_ALGORITHMIC_MEDIA\x10\x01\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x02\x42\x86\x02\n(com.google.shopping.merchant.products.v1B\x13ProductsCommonProtoP\x01ZJcloud.google.com/go/shopping/merchant/products/apiv1/productspb;productspb\xaa\x02$Google.Shopping.Merchant.Products.V1\xca\x02$Google\\Shopping\\Merchant\\Products\\V1\xea\x02(Google::Shopping::Merchant::Products::V1b\x06proto3"
         
     | 
| 
      
 13 
     | 
    
         
            +
            descriptor_data = "\n:google/shopping/merchant/products/v1/products_common.proto\x12$google.shopping.merchant.products.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a google/shopping/type/types.proto\x1a\x1agoogle/type/interval.proto\"\xf3@\n\x11ProductAttributes\x12\x1e\n\x11identifier_exists\x18\x04 \x01(\x08H\x00\x88\x01\x01\x12\x16\n\tis_bundle\x18\x05 \x01(\x08H\x01\x88\x01\x01\x12\x12\n\x05title\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x07 \x01(\tH\x03\x88\x01\x01\x12\x11\n\x04link\x18\x08 \x01(\tH\x04\x88\x01\x01\x12\x18\n\x0bmobile_link\x18\t \x01(\tH\x05\x88\x01\x01\x12\x1b\n\x0e\x63\x61nonical_link\x18\n \x01(\tH\x06\x88\x01\x01\x12\x17\n\nimage_link\x18\x0b \x01(\tH\x07\x88\x01\x01\x12\x1e\n\x16\x61\x64\x64itional_image_links\x18\x0c \x03(\t\x12\x33\n\x0f\x65xpiration_date\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0f\x64isclosure_date\x18O \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\x05\x61\x64ult\x18\x11 \x01(\x08H\x08\x88\x01\x01\x12\x46\n\tage_group\x18\x12 \x01(\x0e\x32..google.shopping.merchant.products.v1.AgeGroupH\t\x88\x01\x01\x12M\n\x0c\x61vailability\x18\x13 \x01(\x0e\x32\x32.google.shopping.merchant.products.v1.AvailabilityH\n\x88\x01\x01\x12\x35\n\x11\x61vailability_date\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\x05\x62rand\x18\x15 \x01(\tH\x0b\x88\x01\x01\x12\x12\n\x05\x63olor\x18\x16 \x01(\tH\x0c\x88\x01\x01\x12G\n\tcondition\x18\x17 \x01(\x0e\x32/.google.shopping.merchant.products.v1.ConditionH\r\x88\x01\x01\x12\x41\n\x06gender\x18\x18 \x01(\x0e\x32,.google.shopping.merchant.products.v1.GenderH\x0e\x88\x01\x01\x12$\n\x17google_product_category\x18\x19 \x01(\tH\x0f\x88\x01\x01\x12\x0e\n\x05gtins\x18\x8c\x01 \x03(\t\x12\x1a\n\ritem_group_id\x18\x1b \x01(\tH\x10\x88\x01\x01\x12\x15\n\x08material\x18\x1c \x01(\tH\x11\x88\x01\x01\x12\x10\n\x03mpn\x18\x1d \x01(\tH\x12\x88\x01\x01\x12\x14\n\x07pattern\x18\x1e \x01(\tH\x13\x88\x01\x01\x12*\n\x05price\x18\x1f \x01(\x0b\x32\x1b.google.shopping.type.Price\x12:\n\x14maximum_retail_price\x18\x8b\x01 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12M\n\x0binstallment\x18  \x01(\x0b\x32\x38.google.shopping.merchant.products.v1.ProductInstallment\x12Q\n\x11subscription_cost\x18! \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.SubscriptionCost\x12K\n\x0eloyalty_points\x18\" \x01(\x0b\x32\x33.google.shopping.merchant.products.v1.LoyaltyPoints\x12O\n\x10loyalty_programs\x18\x88\x01 \x03(\x0b\x32\x34.google.shopping.merchant.products.v1.LoyaltyProgram\x12\x15\n\rproduct_types\x18# \x03(\t\x12/\n\nsale_price\x18$ \x01(\x0b\x32\x1b.google.shopping.type.Price\x12\x38\n\x19sale_price_effective_date\x18% \x01(\x0b\x32\x15.google.type.Interval\x12$\n\x17sell_on_google_quantity\x18& \x01(\x03H\x14\x88\x01\x01\x12N\n\x0eproduct_height\x18w \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.ProductDimension\x12N\n\x0eproduct_length\x18x \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.ProductDimension\x12M\n\rproduct_width\x18y \x01(\x0b\x32\x36.google.shopping.merchant.products.v1.ProductDimension\x12K\n\x0eproduct_weight\x18z \x01(\x0b\x32\x33.google.shopping.merchant.products.v1.ProductWeight\x12@\n\x08shipping\x18\' \x03(\x0b\x32..google.shopping.merchant.products.v1.Shipping\x12\x62\n\x10\x63\x61rrier_shipping\x18\x8e\x01 \x03(\x0b\x32G.google.shopping.merchant.products.v1.ProductAttributes.CarrierShipping\x12]\n\x17\x66ree_shipping_threshold\x18\x87\x01 \x03(\x0b\x32;.google.shopping.merchant.products.v1.FreeShippingThreshold\x12M\n\x0fshipping_weight\x18( \x01(\x0b\x32\x34.google.shopping.merchant.products.v1.ShippingWeight\x12P\n\x0fshipping_length\x18) \x01(\x0b\x32\x37.google.shopping.merchant.products.v1.ShippingDimension\x12O\n\x0eshipping_width\x18* \x01(\x0b\x32\x37.google.shopping.merchant.products.v1.ShippingDimension\x12P\n\x0fshipping_height\x18+ \x01(\x0b\x32\x37.google.shopping.merchant.products.v1.ShippingDimension\x12\x1e\n\x11max_handling_time\x18, \x01(\x03H\x15\x88\x01\x01\x12\x1e\n\x11min_handling_time\x18- \x01(\x03H\x16\x88\x01\x01\x12\x1b\n\x0eshipping_label\x18. \x01(\tH\x17\x88\x01\x01\x12\x1f\n\x12transit_time_label\x18/ \x01(\tH\x18\x88\x01\x01\x12\x11\n\x04size\x18\x30 \x01(\tH\x19\x88\x01\x01\x12J\n\x0bsize_system\x18\x31 \x01(\x0e\x32\x30.google.shopping.merchant.products.v1.SizeSystemH\x1a\x88\x01\x01\x12\x42\n\nsize_types\x18\x32 \x03(\x0e\x32..google.shopping.merchant.products.v1.SizeType\x12\x61\n\x17\x65nergy_efficiency_class\x18\x35 \x01(\x0e\x32;.google.shopping.merchant.products.v1.EnergyEfficiencyClassH\x1b\x88\x01\x01\x12\x65\n\x1bmin_energy_efficiency_class\x18\x36 \x01(\x0e\x32;.google.shopping.merchant.products.v1.EnergyEfficiencyClassH\x1c\x88\x01\x01\x12\x65\n\x1bmax_energy_efficiency_class\x18\x37 \x01(\x0e\x32;.google.shopping.merchant.products.v1.EnergyEfficiencyClassH\x1d\x88\x01\x01\x12V\n\x14unit_pricing_measure\x18\x38 \x01(\x0b\x32\x38.google.shopping.merchant.products.v1.UnitPricingMeasure\x12_\n\x19unit_pricing_base_measure\x18\x39 \x01(\x0b\x32<.google.shopping.merchant.products.v1.UnitPricingBaseMeasure\x12\x16\n\tmultipack\x18: \x01(\x03H\x1e\x88\x01\x01\x12\x19\n\x0c\x61\x64s_grouping\x18; \x01(\tH\x1f\x88\x01\x01\x12\x12\n\nads_labels\x18< \x03(\t\x12\x19\n\x0c\x61\x64s_redirect\x18= \x01(\tH \x88\x01\x01\x12\x37\n\x12\x63ost_of_goods_sold\x18> \x01(\x0b\x32\x1b.google.shopping.type.Price\x12L\n\x0fproduct_details\x18? \x03(\x0b\x32\x33.google.shopping.merchant.products.v1.ProductDetail\x12\x1a\n\x12product_highlights\x18@ \x03(\t\x12\x1b\n\x0e\x64isplay_ads_id\x18\x41 \x01(\tH!\x88\x01\x01\x12\x1f\n\x17\x64isplay_ads_similar_ids\x18\x42 \x03(\t\x12\x1e\n\x11\x64isplay_ads_title\x18\x43 \x01(\tH\"\x88\x01\x01\x12\x1d\n\x10\x64isplay_ads_link\x18\x44 \x01(\tH#\x88\x01\x01\x12\x1e\n\x11\x64isplay_ads_value\x18\x45 \x01(\x01H$\x88\x01\x01\x12\x15\n\rpromotion_ids\x18\x46 \x03(\t\x12N\n\rpickup_method\x18P \x01(\x0e\x32\x32.google.shopping.merchant.products.v1.PickupMethodH%\x88\x01\x01\x12H\n\npickup_sla\x18Q \x01(\x0e\x32/.google.shopping.merchant.products.v1.PickupSlaH&\x88\x01\x01\x12\x1a\n\rlink_template\x18R \x01(\tH\'\x88\x01\x01\x12!\n\x14mobile_link_template\x18S \x01(\tH(\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_0\x18G \x01(\tH)\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_1\x18H \x01(\tH*\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_2\x18I \x01(\tH+\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_3\x18J \x01(\tH,\x88\x01\x01\x12\x1b\n\x0e\x63ustom_label_4\x18K \x01(\tH-\x88\x01\x01\x12P\n\x15included_destinations\x18L \x03(\x0e\x32\x31.google.shopping.type.Destination.DestinationEnum\x12P\n\x15\x65xcluded_destinations\x18M \x03(\x0e\x32\x31.google.shopping.type.Destination.DestinationEnum\x12\'\n\x1fshopping_ads_excluded_countries\x18N \x03(\t\x12\x1f\n\x12\x65xternal_seller_id\x18\x01 \x01(\tH.\x88\x01\x01\x12?\n\x05pause\x18\r \x01(\x0e\x32+.google.shopping.merchant.products.v1.PauseH/\x88\x01\x01\x12\x1d\n\x15lifestyle_image_links\x18\x0e \x03(\t\x12q\n\"cloud_export_additional_properties\x18T \x03(\x0b\x32\x45.google.shopping.merchant.products.v1.CloudExportAdditionalProperties\x12 \n\x12virtual_model_link\x18\x82\x01 \x01(\tH0\x88\x01\x01\x12R\n\x0e\x63\x65rtifications\x18{ \x03(\x0b\x32:.google.shopping.merchant.products.v1.ProductCertification\x12U\n\x10structured_title\x18\x84\x01 \x01(\x0b\x32\x35.google.shopping.merchant.products.v1.StructuredTitleH1\x88\x01\x01\x12\x61\n\x16structured_description\x18\x85\x01 \x01(\x0b\x32;.google.shopping.merchant.products.v1.StructuredDescriptionH2\x88\x01\x01\x12;\n\x16\x61uto_pricing_min_price\x18| \x01(\x0b\x32\x1b.google.shopping.type.Price\x12h\n\x19sustainability_incentives\x18\x8a\x01 \x03(\x0b\x32\x44.google.shopping.merchant.products.v1.ProductSustainabilityIncentive\x1a\xa1\x07\n\x0f\x43\x61rrierShipping\x12\x14\n\x07\x63ountry\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x13\n\x06region\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0bpostal_code\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x1f\n\x12origin_postal_code\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x34\n\nflat_price\x18\x05 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x04\x88\x01\x01\x12\x66\n\rcarrier_price\x18\x06 \x01(\x0e\x32J.google.shopping.merchant.products.v1.ProductAttributes.CarrierPriceOptionH\x05\x88\x01\x01\x12G\n\x1d\x63\x61rrier_price_flat_adjustment\x18\x07 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x06\x88\x01\x01\x12\x30\n#carrier_price_percentage_adjustment\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12\x1e\n\x11min_handling_time\x18\t \x01(\x03H\x08\x88\x01\x01\x12\x1e\n\x11max_handling_time\x18\n \x01(\x03H\t\x88\x01\x01\x12#\n\x16\x66ixed_min_transit_time\x18\x0b \x01(\x03H\n\x88\x01\x01\x12#\n\x16\x66ixed_max_transit_time\x18\x0c \x01(\x03H\x0b\x88\x01\x01\x12\x61\n\x14\x63\x61rrier_transit_time\x18\r \x01(\x0e\x32>.google.shopping.merchant.products.v1.CarrierTransitTimeOptionH\x0c\x88\x01\x01\x42\n\n\x08_countryB\t\n\x07_regionB\x0e\n\x0c_postal_codeB\x15\n\x13_origin_postal_codeB\r\n\x0b_flat_priceB\x10\n\x0e_carrier_priceB \n\x1e_carrier_price_flat_adjustmentB&\n$_carrier_price_percentage_adjustmentB\x14\n\x12_min_handling_timeB\x14\n\x12_max_handling_timeB\x19\n\x17_fixed_min_transit_timeB\x19\n\x17_fixed_max_transit_timeB\x17\n\x15_carrier_transit_time\"\x88\x0c\n\x12\x43\x61rrierPriceOption\x12$\n CARRIER_PRICE_OPTION_UNSPECIFIED\x10\x00\x12\x1a\n\x16\x41USTRALIA_POST_REGULAR\x10\x01\x12\x1a\n\x16\x41USTRALIA_POST_EXPRESS\x10\x02\x12\x1c\n\x18\x41USTRALIA_POST_REGULAR_S\x10\x03\x12\x1c\n\x18\x41USTRALIA_POST_REGULAR_M\x10\x04\x12\x1c\n\x18\x41USTRALIA_POST_REGULAR_L\x10\x05\x12\x1d\n\x19\x41USTRALIA_POST_REGULAR_XL\x10\x06\x12\x1c\n\x18\x41USTRALIA_POST_EXPRESS_S\x10\x07\x12\x1c\n\x18\x41USTRALIA_POST_EXPRESS_M\x10\x08\x12\x1c\n\x18\x41USTRALIA_POST_EXPRESS_L\x10\t\x12\x1d\n\x19\x41USTRALIA_POST_EXPRESS_XL\x10\n\x12\x14\n\x10TNT_ROAD_EXPRESS\x10\x0b\x12\x19\n\x15TNT_OVERNIGHT_EXPRESS\x10\x0c\x12\x16\n\x12TOLL_ROAD_DELIVERY\x10\r\x12\x1b\n\x17TOLL_OVERNIGHT_PRIORITY\x10\x0e\x12\r\n\tDHL_PAKET\x10\x0f\x12\x10\n\x0c\x44HL_PACKCHEN\x10\x10\x12\x12\n\x0e\x44PD_EXPRESS_12\x10\x11\x12\x0f\n\x0b\x44PD_EXPRESS\x10\x12\x12\x16\n\x12\x44PD_CLASSIC_PARCEL\x10\x13\x12\x13\n\x0fHERMES_PACKCHEN\x10\x14\x12\x18\n\x14HERMES_PAKETKLASSE_S\x10\x15\x12\x18\n\x14HERMES_PAKETKLASSE_M\x10\x16\x12\x18\n\x14HERMES_PAKETKLASSE_L\x10\x17\x12\x0f\n\x0bUPS_EXPRESS\x10\x18\x12\x15\n\x11UPS_EXPRESS_SAVER\x10\x19\x12\x18\n\x14UPS_EXPRESS_STANDARD\x10\x1a\x12\x0f\n\x0b\x44HL_EXPRESS\x10\x1b\x12\x12\n\x0e\x44HL_EXPRESS_12\x10\x1c\x12\x10\n\x0c\x44PD_NEXT_DAY\x10\x1d\x12\x19\n\x15\x44PD_STANDARD_NEXT_DAY\x10\x1e\x12\x18\n\x14\x44PD_STANDARD_TWO_DAY\x10\x1f\x12\x17\n\x13RMG_1ST_CLASS_SMALL\x10 \x12\x18\n\x14RMG_1ST_CLASS_MEDIUM\x10!\x12\x17\n\x13RMG_2ND_CLASS_SMALL\x10\"\x12\x18\n\x14RMG_2ND_CLASS_MEDIUM\x10#\x12\x0f\n\x0bTNT_EXPRESS\x10$\x12\x12\n\x0eTNT_EXPRESS_10\x10%\x12\x12\n\x0eTNT_EXPRESS_12\x10&\x12\x12\n\x0eYODEL_B2C_48HR\x10\'\x12\x12\n\x0eYODEL_B2C_72HR\x10(\x12\x14\n\x10YODEL_B2C_PACKET\x10)\x12\x10\n\x0c\x46\x45\x44\x45X_GROUND\x10*\x12\x17\n\x13\x46\x45\x44\x45X_HOME_DELIVERY\x10+\x12\x17\n\x13\x46\x45\x44\x45X_EXPRESS_SAVER\x10,\x12\x19\n\x15\x46\x45\x44\x45X_FIRST_OVERNIGHT\x10-\x12\x1c\n\x18\x46\x45\x44\x45X_PRIORITY_OVERNIGHT\x10.\x12\x1c\n\x18\x46\x45\x44\x45X_STANDARD_OVERNIGHT\x10/\x12\x0e\n\nFEDEX_2DAY\x10\x30\x12\x10\n\x0cUPS_STANDARD\x10\x31\x12\x13\n\x0fUPS_2ND_DAY_AIR\x10\x32\x12\x12\n\x0eUPS_2ND_DAY_AM\x10\x33\x12\x14\n\x10UPS_3_DAY_SELECT\x10\x34\x12\x0e\n\nUPS_GROUND\x10\x35\x12\x14\n\x10UPS_NEXT_DAY_AIR\x10\x36\x12\x1d\n\x19UPS_NEXT_DAY_AIR_EARLY_AM\x10\x37\x12\x1a\n\x16UPS_NEXT_DAY_AIR_SAVER\x10\x38\x12\x1e\n\x1aUSPS_PRIORITY_MAIL_EXPRESS\x10\x39\x12\x13\n\x0fUSPS_MEDIA_MAIL\x10:\x12 \n\x1cUSPS_GROUND_ADVANTAGE_RETAIL\x10;\x12\x16\n\x12USPS_PRIORITY_MAIL\x10<\x12$\n USPS_GROUND_ADVANTAGE_COMMERCIAL\x10=B\x14\n\x12_identifier_existsB\x0c\n\n_is_bundleB\x08\n\x06_titleB\x0e\n\x0c_descriptionB\x07\n\x05_linkB\x0e\n\x0c_mobile_linkB\x11\n\x0f_canonical_linkB\r\n\x0b_image_linkB\x08\n\x06_adultB\x0c\n\n_age_groupB\x0f\n\r_availabilityB\x08\n\x06_brandB\x08\n\x06_colorB\x0c\n\n_conditionB\t\n\x07_genderB\x1a\n\x18_google_product_categoryB\x10\n\x0e_item_group_idB\x0b\n\t_materialB\x06\n\x04_mpnB\n\n\x08_patternB\x1a\n\x18_sell_on_google_quantityB\x14\n\x12_max_handling_timeB\x14\n\x12_min_handling_timeB\x11\n\x0f_shipping_labelB\x15\n\x13_transit_time_labelB\x07\n\x05_sizeB\x0e\n\x0c_size_systemB\x1a\n\x18_energy_efficiency_classB\x1e\n\x1c_min_energy_efficiency_classB\x1e\n\x1c_max_energy_efficiency_classB\x0c\n\n_multipackB\x0f\n\r_ads_groupingB\x0f\n\r_ads_redirectB\x11\n\x0f_display_ads_idB\x14\n\x12_display_ads_titleB\x13\n\x11_display_ads_linkB\x14\n\x12_display_ads_valueB\x10\n\x0e_pickup_methodB\r\n\x0b_pickup_slaB\x10\n\x0e_link_templateB\x17\n\x15_mobile_link_templateB\x11\n\x0f_custom_label_0B\x11\n\x0f_custom_label_1B\x11\n\x0f_custom_label_2B\x11\n\x0f_custom_label_3B\x11\n\x0f_custom_label_4B\x15\n\x13_external_seller_idB\x08\n\x06_pauseB\x15\n\x13_virtual_model_linkB\x13\n\x11_structured_titleB\x19\n\x17_structured_description\"-\n\x0eShippingWeight\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0c\n\x04unit\x18\x02 \x01(\t\"0\n\x11ShippingDimension\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0c\n\x04unit\x18\x02 \x01(\t\"5\n\x16UnitPricingBaseMeasure\x12\r\n\x05value\x18\x01 \x01(\x03\x12\x0c\n\x04unit\x18\x02 \x01(\t\"1\n\x12UnitPricingMeasure\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0c\n\x04unit\x18\x02 \x01(\t\"\xa0\x01\n\x10SubscriptionCost\x12H\n\x06period\x18\x01 \x01(\x0e\x32\x38.google.shopping.merchant.products.v1.SubscriptionPeriod\x12\x15\n\rperiod_length\x18\x02 \x01(\x03\x12+\n\x06\x61mount\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.Price\"\xf4\x01\n\x12ProductInstallment\x12\x0e\n\x06months\x18\x01 \x01(\x03\x12+\n\x06\x61mount\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12\x35\n\x0b\x64ownpayment\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x00\x88\x01\x01\x12J\n\x0b\x63redit_type\x18\x04 \x01(\x0e\x32\x30.google.shopping.merchant.products.v1.CreditTypeH\x01\x88\x01\x01\x42\x0e\n\x0c_downpaymentB\x0e\n\x0c_credit_type\"B\n\rLoyaltyPoints\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0cpoints_value\x18\x02 \x01(\x03\x12\r\n\x05ratio\x18\x03 \x01(\x01\"\xc1\x03\n\x0eLoyaltyProgram\x12\x1a\n\rprogram_label\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x17\n\ntier_label\x18\x02 \x01(\tH\x01\x88\x01\x01\x12/\n\x05price\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x02\x88\x01\x01\x12\x41\n\x17\x63\x61shback_for_future_use\x18\x04 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x03\x88\x01\x01\x12\x1b\n\x0eloyalty_points\x18\x05 \x01(\x03H\x04\x88\x01\x01\x12?\n\x1bmember_price_effective_date\x18\x06 \x01(\x0b\x32\x15.google.type.IntervalH\x05\x88\x01\x01\x12\x1b\n\x0eshipping_label\x18\x07 \x01(\tH\x06\x88\x01\x01\x42\x10\n\x0e_program_labelB\r\n\x0b_tier_labelB\x08\n\x06_priceB\x1a\n\x18_cashback_for_future_useB\x11\n\x0f_loyalty_pointsB\x1e\n\x1c_member_price_effective_dateB\x11\n\x0f_shipping_label\"\x83\x03\n\x08Shipping\x12*\n\x05price\x18\x01 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12\x0f\n\x07\x63ountry\x18\x02 \x01(\t\x12\x0e\n\x06region\x18\x03 \x01(\t\x12\x0f\n\x07service\x18\x04 \x01(\t\x12\x13\n\x0blocation_id\x18\x05 \x01(\x03\x12\x1b\n\x13location_group_name\x18\x06 \x01(\t\x12\x13\n\x0bpostal_code\x18\x07 \x01(\t\x12\x1e\n\x11min_handling_time\x18\x08 \x01(\x03H\x00\x88\x01\x01\x12\x1e\n\x11max_handling_time\x18\t \x01(\x03H\x01\x88\x01\x01\x12\x1d\n\x10min_transit_time\x18\n \x01(\x03H\x02\x88\x01\x01\x12\x1d\n\x10max_transit_time\x18\x0b \x01(\x03H\x03\x88\x01\x01\x42\x14\n\x12_min_handling_timeB\x14\n\x12_max_handling_timeB\x13\n\x11_min_transit_timeB\x13\n\x11_max_transit_time\"\x88\x01\n\x15\x46reeShippingThreshold\x12\x14\n\x07\x63ountry\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x39\n\x0fprice_threshold\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x01\x88\x01\x01\x42\n\n\x08_countryB\x12\n\x10_price_threshold\"V\n\rProductDetail\x12\x14\n\x0csection_name\x18\x01 \x01(\t\x12\x16\n\x0e\x61ttribute_name\x18\x02 \x01(\t\x12\x17\n\x0f\x61ttribute_value\x18\x03 \x01(\t\"\xf9\x02\n\x14ProductCertification\x12\x62\n\x17\x63\x65rtification_authority\x18\x01 \x01(\x0e\x32<.google.shopping.merchant.products.v1.CertificationAuthorityH\x00\x88\x01\x01\x12X\n\x12\x63\x65rtification_name\x18\x02 \x01(\x0e\x32\x37.google.shopping.merchant.products.v1.CertificationNameH\x01\x88\x01\x01\x12\x1f\n\x12\x63\x65rtification_code\x18\x03 \x01(\tH\x02\x88\x01\x01\x12 \n\x13\x63\x65rtification_value\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x1a\n\x18_certification_authorityB\x15\n\x13_certification_nameB\x15\n\x13_certification_codeB\x16\n\x14_certification_value\"\xa6\x01\n\x0fStructuredTitle\x12Y\n\x13\x64igital_source_type\x18\x01 \x01(\x0e\x32\x37.google.shopping.merchant.products.v1.DigitalSourceTypeH\x00\x88\x01\x01\x12\x14\n\x07\x63ontent\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x16\n\x14_digital_source_typeB\n\n\x08_content\"\xac\x01\n\x15StructuredDescription\x12Y\n\x13\x64igital_source_type\x18\x01 \x01(\x0e\x32\x37.google.shopping.merchant.products.v1.DigitalSourceTypeH\x00\x88\x01\x01\x12\x14\n\x07\x63ontent\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x16\n\x14_digital_source_typeB\n\n\x08_content\"9\n\x10ProductDimension\x12\x12\n\x05value\x18\x01 \x01(\x01\x42\x03\xe0\x41\x02\x12\x11\n\x04unit\x18\x02 \x01(\tB\x03\xe0\x41\x02\"6\n\rProductWeight\x12\x12\n\x05value\x18\x01 \x01(\x01\x42\x03\xe0\x41\x02\x12\x11\n\x04unit\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xeb\x07\n\rProductStatus\x12\x63\n\x14\x64\x65stination_statuses\x18\x03 \x03(\x0b\x32\x45.google.shopping.merchant.products.v1.ProductStatus.DestinationStatus\x12]\n\x11item_level_issues\x18\x04 \x03(\x0b\x32\x42.google.shopping.merchant.products.v1.ProductStatus.ItemLevelIssue\x12\x31\n\rcreation_date\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x10last_update_date\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16google_expiration_date\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a\xc1\x01\n\x11\x44\x65stinationStatus\x12V\n\x11reporting_context\x18\x01 \x01(\x0e\x32;.google.shopping.type.ReportingContext.ReportingContextEnum\x12\x1a\n\x12\x61pproved_countries\x18\x02 \x03(\t\x12\x19\n\x11pending_countries\x18\x03 \x03(\t\x12\x1d\n\x15\x64isapproved_countries\x18\x04 \x03(\t\x1a\xac\x03\n\x0eItemLevelIssue\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12]\n\x08severity\x18\x02 \x01(\x0e\x32K.google.shopping.merchant.products.v1.ProductStatus.ItemLevelIssue.Severity\x12\x12\n\nresolution\x18\x03 \x01(\t\x12\x11\n\tattribute\x18\x04 \x01(\t\x12V\n\x11reporting_context\x18\x05 \x01(\x0e\x32;.google.shopping.type.ReportingContext.ReportingContextEnum\x12\x13\n\x0b\x64\x65scription\x18\x06 \x01(\t\x12\x0e\n\x06\x64\x65tail\x18\x07 \x01(\t\x12\x15\n\rdocumentation\x18\x08 \x01(\t\x12\x1c\n\x14\x61pplicable_countries\x18\t \x03(\t\"T\n\x08Severity\x12\x18\n\x14SEVERITY_UNSPECIFIED\x10\x00\x12\x10\n\x0cNOT_IMPACTED\x10\x01\x12\x0b\n\x07\x44\x45MOTED\x10\x02\x12\x0f\n\x0b\x44ISAPPROVED\x10\x03\"\xa5\x02\n\x1f\x43loudExportAdditionalProperties\x12\x1a\n\rproperty_name\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x12\n\ntext_value\x18\x02 \x03(\t\x12\x17\n\nbool_value\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\tint_value\x18\x04 \x03(\x03\x12\x13\n\x0b\x66loat_value\x18\x05 \x03(\x02\x12\x16\n\tmin_value\x18\x06 \x01(\x02H\x02\x88\x01\x01\x12\x16\n\tmax_value\x18\x07 \x01(\x02H\x03\x88\x01\x01\x12\x16\n\tunit_code\x18\x08 \x01(\tH\x04\x88\x01\x01\x42\x10\n\x0e_property_nameB\r\n\x0b_bool_valueB\x0c\n\n_min_valueB\x0c\n\n_max_valueB\x0c\n\n_unit_code\"\x9d\x02\n\x1eProductSustainabilityIncentive\x12-\n\x06\x61mount\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.PriceH\x00\x12\x14\n\npercentage\x18\x03 \x01(\x01H\x00\x12\\\n\x04type\x18\x01 \x01(\x0e\x32I.google.shopping.merchant.products.v1.ProductSustainabilityIncentive.TypeH\x01\x88\x01\x01\"F\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x11\n\rEV_TAX_CREDIT\x10\x01\x12\x15\n\x11\x45V_PRICE_DISCOUNT\x10\x02\x42\x07\n\x05valueB\x07\n\x05_type\"\xb4\x01\n\x12\x41utomatedDiscounts\x12\x30\n\x0bprior_price\x18\x01 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12<\n\x17prior_price_progressive\x18\x02 \x01(\x0b\x32\x1b.google.shopping.type.Price\x12.\n\tgad_price\x18\x03 \x01(\x0b\x32\x1b.google.shopping.type.Price*N\n\x12SubscriptionPeriod\x12#\n\x1fSUBSCRIPTION_PERIOD_UNSPECIFIED\x10\x00\x12\t\n\x05MONTH\x10\x01\x12\x08\n\x04YEAR\x10\x02*`\n\x08\x41geGroup\x12\x19\n\x15\x41GE_GROUP_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44ULT\x10\x01\x12\x08\n\x04KIDS\x10\x02\x12\x0b\n\x07TODDLER\x10\x03\x12\n\n\x06INFANT\x10\x04\x12\x0b\n\x07NEWBORN\x10\x05*\x83\x01\n\x0c\x41vailability\x12\x1c\n\x18\x41VAILABILITY_UNSPECIFIED\x10\x00\x12\x0c\n\x08IN_STOCK\x10\x01\x12\x10\n\x0cOUT_OF_STOCK\x10\x02\x12\x0c\n\x08PREORDER\x10\x03\x12\x18\n\x14LIMITED_AVAILABILITY\x10\x04\x12\r\n\tBACKORDER\x10\x05*J\n\tCondition\x12\x19\n\x15\x43ONDITION_UNSPECIFIED\x10\x00\x12\x07\n\x03NEW\x10\x01\x12\x08\n\x04USED\x10\x02\x12\x0f\n\x0bREFURBISHED\x10\x03*B\n\x06Gender\x12\x16\n\x12GENDER_UNSPECIFIED\x10\x00\x12\x08\n\x04MALE\x10\x01\x12\n\n\x06\x46\x45MALE\x10\x02\x12\n\n\x06UNISEX\x10\x03*A\n\nCreditType\x12\x1b\n\x17\x43REDIT_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x46INANCE\x10\x01\x12\t\n\x05LEASE\x10\x02*\x82\x01\n\nSizeSystem\x12\x1b\n\x17SIZE_SYSTEM_UNSPECIFIED\x10\x00\x12\x06\n\x02\x41U\x10\x01\x12\x06\n\x02\x42R\x10\x02\x12\x06\n\x02\x43N\x10\x03\x12\x06\n\x02\x44\x45\x10\x04\x12\x06\n\x02\x45U\x10\x05\x12\x06\n\x02\x46R\x10\x06\x12\x06\n\x02IT\x10\x07\x12\x06\n\x02JP\x10\x08\x12\x07\n\x03MEX\x10\t\x12\x06\n\x02UK\x10\n\x12\x06\n\x02US\x10\x0b*j\n\x08SizeType\x12\x19\n\x15SIZE_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07REGULAR\x10\x01\x12\n\n\x06PETITE\x10\x02\x12\r\n\tMATERNITY\x10\x03\x12\x07\n\x03\x42IG\x10\x04\x12\x08\n\x04TALL\x10\x05\x12\x08\n\x04PLUS\x10\x06*\x8c\x01\n\x15\x45nergyEfficiencyClass\x12\'\n#ENERGY_EFFICIENCY_CLASS_UNSPECIFIED\x10\x00\x12\x08\n\x04\x41PPP\x10\x01\x12\x07\n\x03\x41PP\x10\x02\x12\x06\n\x02\x41P\x10\x03\x12\x05\n\x01\x41\x10\x04\x12\x05\n\x01\x42\x10\x05\x12\x05\n\x01\x43\x10\x06\x12\x05\n\x01\x44\x10\x07\x12\x05\n\x01\x45\x10\x08\x12\x05\n\x01\x46\x10\t\x12\x05\n\x01G\x10\n*i\n\x0cPickupMethod\x12\x1d\n\x19PICKUP_METHOD_UNSPECIFIED\x10\x00\x12\x11\n\rNOT_SUPPORTED\x10\x01\x12\x07\n\x03\x42UY\x10\x02\x12\x0b\n\x07RESERVE\x10\x03\x12\x11\n\rSHIP_TO_STORE\x10\x04*\x98\x01\n\tPickupSla\x12\x1a\n\x16PICKUP_SLA_UNSPECIFIED\x10\x00\x12\x0c\n\x08SAME_DAY\x10\x01\x12\x0c\n\x08NEXT_DAY\x10\x02\x12\x0b\n\x07TWO_DAY\x10\x03\x12\r\n\tTHREE_DAY\x10\x04\x12\x0c\n\x08\x46OUR_DAY\x10\x05\x12\x0c\n\x08\x46IVE_DAY\x10\x06\x12\x0b\n\x07SIX_DAY\x10\x07\x12\x0e\n\nMULTI_WEEK\x10\x08*0\n\x05Pause\x12\x15\n\x11PAUSE_UNSPECIFIED\x10\x00\x12\x07\n\x03\x41\x44S\x10\x01\x12\x07\n\x03\x41LL\x10\x02*g\n\x16\x43\x65rtificationAuthority\x12\'\n#CERTIFICATION_AUTHORITY_UNSPECIFIED\x10\x00\x12\t\n\x05\x41\x44\x45ME\x10\x01\x12\x08\n\x04\x42MWK\x10\x02\x12\x07\n\x03\x45PA\x10\x03\x12\x06\n\x02\x45\x43\x10\x04*\xd5\x01\n\x11\x43\x65rtificationName\x12\"\n\x1e\x43\x45RTIFICATION_NAME_UNSPECIFIED\x10\x00\x12\x0f\n\x0b\x45NERGY_STAR\x10\x01\x12\x1e\n\x1a\x45NERGY_STAR_MOST_EFFICIENT\x10\x02\x12\t\n\x05\x45PREL\x10\x03\x12\x0f\n\x0b\x45U_ECOLABEL\x10\x04\x12\x1d\n\x19VEHICLE_ENERGY_EFFICIENCY\x10\x05\x12\x30\n,VEHICLE_ENERGY_EFFICIENCY_DISCHARGED_BATTERY\x10\x06*d\n\x11\x44igitalSourceType\x12#\n\x1f\x44IGITAL_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1d\n\x19TRAINED_ALGORITHMIC_MEDIA\x10\x01\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x02*\xc8\x07\n\x18\x43\x61rrierTransitTimeOption\x12+\n\'CARRIER_TRANSIT_TIME_OPTION_UNSPECIFIED\x10\x00\x12\r\n\tDHL_PAKET\x10\x01\x12\x10\n\x0c\x44HL_PACKCHEN\x10\x02\x12\x13\n\x0f\x44HL_EXPRESSEASY\x10\x03\x12\x0f\n\x0b\x44PD_EXPRESS\x10\x04\x12\x16\n\x12\x44PD_CLASSIC_PARCEL\x10\x05\x12\x12\n\x0eHERMES_HAUSTUR\x10\x06\x12\x14\n\x10HERMES_PAKETSHOP\x10\x07\x12\x10\n\x0cGLS_BUSINESS\x10\x08\x12\x0f\n\x0bGLS_EXPRESS\x10\t\x12\x0f\n\x0bGLS_PRIVATE\x10\n\x12\x16\n\x12\x43OLISSIMO_DOMICILE\x10\x0b\x12\x14\n\x10\x44HL_EXPRESS_12AM\x10\x0c\x12\x13\n\x0f\x44HL_EXPRESS_9AM\x10\r\x12\x12\n\x0eGEODIS_EXPRESS\x10\x0e\x12\x12\n\x0eGEODIS_PACK_30\x10\x0f\x12\x13\n\x0fGEODIS_SAME_DAY\x10\x10\x12\x11\n\rGEODIS_TOP_24\x10\x11\x12\x15\n\x11TNT_ESSENTIEL_24H\x10\x12\x12\x1d\n\x19TNT_ESSENTIEL_FLEXIBILITE\x10\x13\x12\x10\n\x0c\x46\x45\x44\x45X_GROUND\x10\x14\x12\x17\n\x13\x46\x45\x44\x45X_HOME_DELIVERY\x10\x15\x12\x17\n\x13\x46\x45\x44\x45X_EXPRESS_SAVER\x10\x16\x12\x19\n\x15\x46\x45\x44\x45X_FIRST_OVERNIGHT\x10\x17\x12\x1c\n\x18\x46\x45\x44\x45X_PRIORITY_OVERNIGHT\x10\x18\x12\x1c\n\x18\x46\x45\x44\x45X_STANDARD_OVERNIGHT\x10\x19\x12\x0e\n\nFEDEX_2DAY\x10\x1a\x12\x13\n\x0fUPS_2ND_DAY_AIR\x10\x1b\x12\x12\n\x0eUPS_2ND_DAY_AM\x10\x1c\x12\x14\n\x10UPS_3_DAY_SELECT\x10\x1d\x12\x0e\n\nUPS_GROUND\x10\x1e\x12\x14\n\x10UPS_NEXT_DAY_AIR\x10\x1f\x12\x1d\n\x19UPS_NEXT_DAY_AIR_EARLY_AM\x10 \x12\x1a\n\x16UPS_NEXT_DAY_AIR_SAVER\x10!\x12\x1e\n\x1aUSPS_PRIORITY_MAIL_EXPRESS\x10\"\x12\x13\n\x0fUSPS_MEDIA_MAIL\x10#\x12 \n\x1cUSPS_GROUND_ADVANTAGE_RETAIL\x10$\x12\x16\n\x12USPS_PRIORITY_MAIL\x10%\x12$\n USPS_GROUND_ADVANTAGE_COMMERCIAL\x10&\x12\x19\n\x15USPS_FIRST_CLASS_MAIL\x10\'B\x86\x02\n(com.google.shopping.merchant.products.v1B\x13ProductsCommonProtoP\x01ZJcloud.google.com/go/shopping/merchant/products/apiv1/productspb;productspb\xaa\x02$Google.Shopping.Merchant.Products.V1\xca\x02$Google\\Shopping\\Merchant\\Products\\V1\xea\x02(Google::Shopping::Merchant::Products::V1b\x06proto3"
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
            pool = Google::Protobuf::DescriptorPool.generated_pool
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
         @@ -45,6 +45,8 @@ module Google 
     | 
|
| 
       45 
45 
     | 
    
         
             
                  module Products
         
     | 
| 
       46 
46 
     | 
    
         
             
                    module V1
         
     | 
| 
       47 
47 
     | 
    
         
             
                      ProductAttributes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.ProductAttributes").msgclass
         
     | 
| 
      
 48 
     | 
    
         
            +
                      ProductAttributes::CarrierShipping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.ProductAttributes.CarrierShipping").msgclass
         
     | 
| 
      
 49 
     | 
    
         
            +
                      ProductAttributes::CarrierPriceOption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.ProductAttributes.CarrierPriceOption").enummodule
         
     | 
| 
       48 
50 
     | 
    
         
             
                      ShippingWeight = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.ShippingWeight").msgclass
         
     | 
| 
       49 
51 
     | 
    
         
             
                      ShippingDimension = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.ShippingDimension").msgclass
         
     | 
| 
       50 
52 
     | 
    
         
             
                      UnitPricingBaseMeasure = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.UnitPricingBaseMeasure").msgclass
         
     | 
| 
         @@ -84,6 +86,7 @@ module Google 
     | 
|
| 
       84 
86 
     | 
    
         
             
                      CertificationAuthority = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.CertificationAuthority").enummodule
         
     | 
| 
       85 
87 
     | 
    
         
             
                      CertificationName = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.CertificationName").enummodule
         
     | 
| 
       86 
88 
     | 
    
         
             
                      DigitalSourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.DigitalSourceType").enummodule
         
     | 
| 
      
 89 
     | 
    
         
            +
                      CarrierTransitTimeOption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.shopping.merchant.products.v1.CarrierTransitTimeOption").enummodule
         
     | 
| 
       87 
90 
     | 
    
         
             
                    end
         
     | 
| 
       88 
91 
     | 
    
         
             
                  end
         
     | 
| 
       89 
92 
     | 
    
         
             
                end
         
     | 
| 
         @@ -429,8 +429,6 @@ module Google 
     | 
|
| 
       429 
429 
     | 
    
         
             
                          #   @return [::String,nil]
         
     | 
| 
       430 
430 
     | 
    
         
             
                          # @!attribute [rw] credentials
         
     | 
| 
       431 
431 
     | 
    
         
             
                          #   Credentials to send with calls. You may provide any of the following types:
         
     | 
| 
       432 
     | 
    
         
            -
                          #    *  (`String`) The path to a service account key file in JSON format
         
     | 
| 
       433 
     | 
    
         
            -
                          #    *  (`Hash`) A service account key as a Hash
         
     | 
| 
       434 
432 
     | 
    
         
             
                          #    *  (`Google::Auth::Credentials`) A googleauth credentials object
         
     | 
| 
       435 
433 
     | 
    
         
             
                          #       (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
         
     | 
| 
       436 
434 
     | 
    
         
             
                          #    *  (`Signet::OAuth2::Client`) A signet oauth2 client object
         
     | 
| 
         @@ -439,7 +437,26 @@ module Google 
     | 
|
| 
       439 
437 
     | 
    
         
             
                          #    *  (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
         
     | 
| 
       440 
438 
     | 
    
         
             
                          #    *  (`nil`) indicating no credentials
         
     | 
| 
       441 
439 
     | 
    
         
             
                          #
         
     | 
| 
       442 
     | 
    
         
            -
                          #   Warning:  
     | 
| 
      
 440 
     | 
    
         
            +
                          #   @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
         
     | 
| 
      
 441 
     | 
    
         
            +
                          #     is deprecated. Providing an unvalidated credential configuration to
         
     | 
| 
      
 442 
     | 
    
         
            +
                          #     Google APIs can compromise the security of your systems and data.
         
     | 
| 
      
 443 
     | 
    
         
            +
                          #
         
     | 
| 
      
 444 
     | 
    
         
            +
                          #   @example
         
     | 
| 
      
 445 
     | 
    
         
            +
                          #
         
     | 
| 
      
 446 
     | 
    
         
            +
                          #     # The recommended way to provide credentials is to use the `make_creds` method
         
     | 
| 
      
 447 
     | 
    
         
            +
                          #     # on the appropriate credentials class for your environment.
         
     | 
| 
      
 448 
     | 
    
         
            +
                          #
         
     | 
| 
      
 449 
     | 
    
         
            +
                          #     require "googleauth"
         
     | 
| 
      
 450 
     | 
    
         
            +
                          #
         
     | 
| 
      
 451 
     | 
    
         
            +
                          #     credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
         
     | 
| 
      
 452 
     | 
    
         
            +
                          #       json_key_io: ::File.open("/path/to/keyfile.json")
         
     | 
| 
      
 453 
     | 
    
         
            +
                          #     )
         
     | 
| 
      
 454 
     | 
    
         
            +
                          #
         
     | 
| 
      
 455 
     | 
    
         
            +
                          #     client = ::Google::Shopping::Merchant::Products::V1::ProductsService::Client.new do |config|
         
     | 
| 
      
 456 
     | 
    
         
            +
                          #       config.credentials = credentials
         
     | 
| 
      
 457 
     | 
    
         
            +
                          #     end
         
     | 
| 
      
 458 
     | 
    
         
            +
                          #
         
     | 
| 
      
 459 
     | 
    
         
            +
                          #   @note Warning: If you accept a credential configuration (JSON file or Hash) from an
         
     | 
| 
       443 
460 
     | 
    
         
             
                          #   external source for authentication to Google Cloud, you must validate it before
         
     | 
| 
       444 
461 
     | 
    
         
             
                          #   providing it to a Google API client library. Providing an unvalidated credential
         
     | 
| 
       445 
462 
     | 
    
         
             
                          #   configuration to Google APIs can compromise the security of your systems and data.
         
     | 
| 
         @@ -185,6 +185,9 @@ module Google 
     | 
|
| 
       185 
185 
     | 
    
         
             
                      # @!attribute [rw] shipping
         
     | 
| 
       186 
186 
     | 
    
         
             
                      #   @return [::Array<::Google::Shopping::Merchant::Products::V1::Shipping>]
         
     | 
| 
       187 
187 
     | 
    
         
             
                      #     Shipping rules.
         
     | 
| 
      
 188 
     | 
    
         
            +
                      # @!attribute [rw] carrier_shipping
         
     | 
| 
      
 189 
     | 
    
         
            +
                      #   @return [::Array<::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping>]
         
     | 
| 
      
 190 
     | 
    
         
            +
                      #     Rules for carrier-based shipping.
         
     | 
| 
       188 
191 
     | 
    
         
             
                      # @!attribute [rw] free_shipping_threshold
         
     | 
| 
       189 
192 
     | 
    
         
             
                      #   @return [::Array<::Google::Shopping::Merchant::Products::V1::FreeShippingThreshold>]
         
     | 
| 
       190 
193 
     | 
    
         
             
                      #     Conditions to be met for a product to have free shipping.
         
     | 
| 
         @@ -416,6 +419,313 @@ module Google 
     | 
|
| 
       416 
419 
     | 
    
         
             
                      class ProductAttributes
         
     | 
| 
       417 
420 
     | 
    
         
             
                        include ::Google::Protobuf::MessageExts
         
     | 
| 
       418 
421 
     | 
    
         
             
                        extend ::Google::Protobuf::MessageExts::ClassMethods
         
     | 
| 
      
 422 
     | 
    
         
            +
             
     | 
| 
      
 423 
     | 
    
         
            +
                        # Carrier-based shipping configuration. Allows for setting shipping speed or
         
     | 
| 
      
 424 
     | 
    
         
            +
                        # shipping cost based on a carrier's provided info.
         
     | 
| 
      
 425 
     | 
    
         
            +
                        # @!attribute [rw] country
         
     | 
| 
      
 426 
     | 
    
         
            +
                        #   @return [::String]
         
     | 
| 
      
 427 
     | 
    
         
            +
                        #     The [CLDR territory
         
     | 
| 
      
 428 
     | 
    
         
            +
                        #     code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml)
         
     | 
| 
      
 429 
     | 
    
         
            +
                        #     of the country to which an item will ship.
         
     | 
| 
      
 430 
     | 
    
         
            +
                        # @!attribute [rw] region
         
     | 
| 
      
 431 
     | 
    
         
            +
                        #   @return [::String]
         
     | 
| 
      
 432 
     | 
    
         
            +
                        #     The geographic region to which a shipping rate applies.
         
     | 
| 
      
 433 
     | 
    
         
            +
                        #     See [region](https://support.google.com/merchants/answer/6324484) for
         
     | 
| 
      
 434 
     | 
    
         
            +
                        #     more information.
         
     | 
| 
      
 435 
     | 
    
         
            +
                        # @!attribute [rw] postal_code
         
     | 
| 
      
 436 
     | 
    
         
            +
                        #   @return [::String]
         
     | 
| 
      
 437 
     | 
    
         
            +
                        #     The postal code range that the shipping rate applies to, represented by
         
     | 
| 
      
 438 
     | 
    
         
            +
                        #     a postal code (eg. `94043`), a postal code prefix followed by a *
         
     | 
| 
      
 439 
     | 
    
         
            +
                        #     wildcard (eg. `94*`), a range between two postal codes (eg.
         
     | 
| 
      
 440 
     | 
    
         
            +
                        #     `94043-98033`) or two postal code prefixes of equal length (eg.
         
     | 
| 
      
 441 
     | 
    
         
            +
                        #     `94*-98*`).
         
     | 
| 
      
 442 
     | 
    
         
            +
                        # @!attribute [rw] origin_postal_code
         
     | 
| 
      
 443 
     | 
    
         
            +
                        #   @return [::String]
         
     | 
| 
      
 444 
     | 
    
         
            +
                        #     The source location postal code from which this offer ships. Represented
         
     | 
| 
      
 445 
     | 
    
         
            +
                        #     only by a full-length postal code.
         
     | 
| 
      
 446 
     | 
    
         
            +
                        # @!attribute [rw] flat_price
         
     | 
| 
      
 447 
     | 
    
         
            +
                        #   @return [::Google::Shopping::Type::Price]
         
     | 
| 
      
 448 
     | 
    
         
            +
                        #     Fixed shipping price, represented as a number with currency. Cannot be
         
     | 
| 
      
 449 
     | 
    
         
            +
                        #     set together with
         
     | 
| 
      
 450 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_price carrierPrice}
         
     | 
| 
      
 451 
     | 
    
         
            +
                        #     or its adjustments
         
     | 
| 
      
 452 
     | 
    
         
            +
                        #     ({::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_price_flat_adjustment carrierPriceFlatAdjustment},
         
     | 
| 
      
 453 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_price_percentage_adjustment carrierPricePercentageAdjustment}).
         
     | 
| 
      
 454 
     | 
    
         
            +
                        # @!attribute [rw] carrier_price
         
     | 
| 
      
 455 
     | 
    
         
            +
                        #   @return [::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierPriceOption]
         
     | 
| 
      
 456 
     | 
    
         
            +
                        #     Selected carrier to calculate the shipping price from. Select a carrier
         
     | 
| 
      
 457 
     | 
    
         
            +
                        #     from the [available carriers
         
     | 
| 
      
 458 
     | 
    
         
            +
                        #     list](https://support.google.com/merchants/answer/15449142#Supported),
         
     | 
| 
      
 459 
     | 
    
         
            +
                        #     for example `AUSTRALIA_POST_REGULAR`. Price will be calculated by this
         
     | 
| 
      
 460 
     | 
    
         
            +
                        #     selected carrier, the location expressed in
         
     | 
| 
      
 461 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#origin_postal_code originPostalCode},
         
     | 
| 
      
 462 
     | 
    
         
            +
                        #     along with the user location to determine the accurate shipping price.
         
     | 
| 
      
 463 
     | 
    
         
            +
                        #     Carrier is represented by a carrier service name or a carrier service ID.
         
     | 
| 
      
 464 
     | 
    
         
            +
                        #     Cannot be set together with
         
     | 
| 
      
 465 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#flat_price flatPrice}.
         
     | 
| 
      
 466 
     | 
    
         
            +
                        # @!attribute [rw] carrier_price_flat_adjustment
         
     | 
| 
      
 467 
     | 
    
         
            +
                        #   @return [::Google::Shopping::Type::Price]
         
     | 
| 
      
 468 
     | 
    
         
            +
                        #     A flat adjustment on the carrier price. Can be either positive or
         
     | 
| 
      
 469 
     | 
    
         
            +
                        #     negative. Cannot be zero. Requires `carrier_price` to be present. Cannot
         
     | 
| 
      
 470 
     | 
    
         
            +
                        #     be set together with
         
     | 
| 
      
 471 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#flat_price flatPrice}
         
     | 
| 
      
 472 
     | 
    
         
            +
                        #     and
         
     | 
| 
      
 473 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_price_percentage_adjustment carrierPricePercentageAdjustment}.
         
     | 
| 
      
 474 
     | 
    
         
            +
                        # @!attribute [rw] carrier_price_percentage_adjustment
         
     | 
| 
      
 475 
     | 
    
         
            +
                        #   @return [::Float]
         
     | 
| 
      
 476 
     | 
    
         
            +
                        #     A percentual adjustment on the carrier price. Can be either positive or
         
     | 
| 
      
 477 
     | 
    
         
            +
                        #     negative. Cannot be zero. Requires `carrier_price` to be present. Cannot
         
     | 
| 
      
 478 
     | 
    
         
            +
                        #     be set together with
         
     | 
| 
      
 479 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#flat_price flatPrice}
         
     | 
| 
      
 480 
     | 
    
         
            +
                        #     and
         
     | 
| 
      
 481 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_price_flat_adjustment carrierPriceFlatAdjustment}.
         
     | 
| 
      
 482 
     | 
    
         
            +
                        # @!attribute [rw] min_handling_time
         
     | 
| 
      
 483 
     | 
    
         
            +
                        #   @return [::Integer]
         
     | 
| 
      
 484 
     | 
    
         
            +
                        #     Minimum handling time (inclusive) between when the order is received and
         
     | 
| 
      
 485 
     | 
    
         
            +
                        #     shipped in business days. 0 means that the order is shipped on the same
         
     | 
| 
      
 486 
     | 
    
         
            +
                        #     day as it is received if it happens before the cut-off time.
         
     | 
| 
      
 487 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#min_handling_time minHandlingTime}
         
     | 
| 
      
 488 
     | 
    
         
            +
                        #     can only be set if
         
     | 
| 
      
 489 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#max_handling_time maxHandlingTime}
         
     | 
| 
      
 490 
     | 
    
         
            +
                        #     is also set.
         
     | 
| 
      
 491 
     | 
    
         
            +
                        # @!attribute [rw] max_handling_time
         
     | 
| 
      
 492 
     | 
    
         
            +
                        #   @return [::Integer]
         
     | 
| 
      
 493 
     | 
    
         
            +
                        #     Maximum handling time (inclusive) between when the order is received and
         
     | 
| 
      
 494 
     | 
    
         
            +
                        #     shipped in business days. 0 means that the order is shipped on the same
         
     | 
| 
      
 495 
     | 
    
         
            +
                        #     day as it is received if it happens before the cut-off time. Both
         
     | 
| 
      
 496 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#max_handling_time maxHandlingTime}
         
     | 
| 
      
 497 
     | 
    
         
            +
                        #     and
         
     | 
| 
      
 498 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#fixed_max_transit_time fixedMaxTransitTime}
         
     | 
| 
      
 499 
     | 
    
         
            +
                        #     or
         
     | 
| 
      
 500 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_transit_time carrierTransitTime}
         
     | 
| 
      
 501 
     | 
    
         
            +
                        #     are required if providing shipping speeds.
         
     | 
| 
      
 502 
     | 
    
         
            +
                        # @!attribute [rw] fixed_min_transit_time
         
     | 
| 
      
 503 
     | 
    
         
            +
                        #   @return [::Integer]
         
     | 
| 
      
 504 
     | 
    
         
            +
                        #     Minimum transit time (inclusive) between when the order has shipped and
         
     | 
| 
      
 505 
     | 
    
         
            +
                        #     when it is delivered in business days. 0 means that the order is
         
     | 
| 
      
 506 
     | 
    
         
            +
                        #     delivered on the same day as it ships.
         
     | 
| 
      
 507 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#fixed_min_transit_time fixedMinTransitTime}
         
     | 
| 
      
 508 
     | 
    
         
            +
                        #     can only be set if
         
     | 
| 
      
 509 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#fixed_max_transit_time fixedMaxTransitTime}
         
     | 
| 
      
 510 
     | 
    
         
            +
                        #     is set. Cannot be set if
         
     | 
| 
      
 511 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_transit_time carrierTransitTime}
         
     | 
| 
      
 512 
     | 
    
         
            +
                        #     is present.
         
     | 
| 
      
 513 
     | 
    
         
            +
                        # @!attribute [rw] fixed_max_transit_time
         
     | 
| 
      
 514 
     | 
    
         
            +
                        #   @return [::Integer]
         
     | 
| 
      
 515 
     | 
    
         
            +
                        #     Maximum transit time (inclusive) between when the order has shipped and
         
     | 
| 
      
 516 
     | 
    
         
            +
                        #     when it is delivered in business days. 0 means that the order is
         
     | 
| 
      
 517 
     | 
    
         
            +
                        #     delivered on the same day as it ships. Needs to be provided together with
         
     | 
| 
      
 518 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#max_handling_time maxHandlingTime}.
         
     | 
| 
      
 519 
     | 
    
         
            +
                        #     Cannot be set if
         
     | 
| 
      
 520 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#carrier_transit_time carrierTransitTime}
         
     | 
| 
      
 521 
     | 
    
         
            +
                        #     is present.
         
     | 
| 
      
 522 
     | 
    
         
            +
                        # @!attribute [rw] carrier_transit_time
         
     | 
| 
      
 523 
     | 
    
         
            +
                        #   @return [::Google::Shopping::Merchant::Products::V1::CarrierTransitTimeOption]
         
     | 
| 
      
 524 
     | 
    
         
            +
                        #     Selected carrier to calculate the shipping speed from. Select a carrier
         
     | 
| 
      
 525 
     | 
    
         
            +
                        #     from the [available carriers
         
     | 
| 
      
 526 
     | 
    
         
            +
                        #     list](https://support.google.com/merchants/answer/15449142#Supported),
         
     | 
| 
      
 527 
     | 
    
         
            +
                        #     for example `AUSTRALIA_POST_REGULAR`. Speed will be calculated by this
         
     | 
| 
      
 528 
     | 
    
         
            +
                        #     selected carrier, the location expressed in
         
     | 
| 
      
 529 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#origin_postal_code originPostalCode},
         
     | 
| 
      
 530 
     | 
    
         
            +
                        #     along with the user location to determine the accurate delivery speed.
         
     | 
| 
      
 531 
     | 
    
         
            +
                        #     Carrier is represented by a carrier service name or a carrier service ID.
         
     | 
| 
      
 532 
     | 
    
         
            +
                        #     Cannot be set together with
         
     | 
| 
      
 533 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#fixed_max_transit_time fixedMaxTransitTime}
         
     | 
| 
      
 534 
     | 
    
         
            +
                        #     or
         
     | 
| 
      
 535 
     | 
    
         
            +
                        #     {::Google::Shopping::Merchant::Products::V1::ProductAttributes::CarrierShipping#fixed_min_transit_time fixedMinTransitTime}.
         
     | 
| 
      
 536 
     | 
    
         
            +
                        class CarrierShipping
         
     | 
| 
      
 537 
     | 
    
         
            +
                          include ::Google::Protobuf::MessageExts
         
     | 
| 
      
 538 
     | 
    
         
            +
                          extend ::Google::Protobuf::MessageExts::ClassMethods
         
     | 
| 
      
 539 
     | 
    
         
            +
                        end
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
                        # Possible carrier where price is coming from.
         
     | 
| 
      
 542 
     | 
    
         
            +
                        module CarrierPriceOption
         
     | 
| 
      
 543 
     | 
    
         
            +
                          # Carrier price option is unspecified.
         
     | 
| 
      
 544 
     | 
    
         
            +
                          CARRIER_PRICE_OPTION_UNSPECIFIED = 0
         
     | 
| 
      
 545 
     | 
    
         
            +
             
     | 
| 
      
 546 
     | 
    
         
            +
                          # Australia Post Regular shipping service.
         
     | 
| 
      
 547 
     | 
    
         
            +
                          AUSTRALIA_POST_REGULAR = 1
         
     | 
| 
      
 548 
     | 
    
         
            +
             
     | 
| 
      
 549 
     | 
    
         
            +
                          # Australia Post Express shipping service.
         
     | 
| 
      
 550 
     | 
    
         
            +
                          AUSTRALIA_POST_EXPRESS = 2
         
     | 
| 
      
 551 
     | 
    
         
            +
             
     | 
| 
      
 552 
     | 
    
         
            +
                          # Australia Post Regular Small shipping service.
         
     | 
| 
      
 553 
     | 
    
         
            +
                          AUSTRALIA_POST_REGULAR_S = 3
         
     | 
| 
      
 554 
     | 
    
         
            +
             
     | 
| 
      
 555 
     | 
    
         
            +
                          # Australia Post Regular Medium shipping service.
         
     | 
| 
      
 556 
     | 
    
         
            +
                          AUSTRALIA_POST_REGULAR_M = 4
         
     | 
| 
      
 557 
     | 
    
         
            +
             
     | 
| 
      
 558 
     | 
    
         
            +
                          # Australia Post Regular Large shipping service.
         
     | 
| 
      
 559 
     | 
    
         
            +
                          AUSTRALIA_POST_REGULAR_L = 5
         
     | 
| 
      
 560 
     | 
    
         
            +
             
     | 
| 
      
 561 
     | 
    
         
            +
                          # Australia Post Regular XL shipping service.
         
     | 
| 
      
 562 
     | 
    
         
            +
                          AUSTRALIA_POST_REGULAR_XL = 6
         
     | 
| 
      
 563 
     | 
    
         
            +
             
     | 
| 
      
 564 
     | 
    
         
            +
                          # Australia Post Express Small shipping service.
         
     | 
| 
      
 565 
     | 
    
         
            +
                          AUSTRALIA_POST_EXPRESS_S = 7
         
     | 
| 
      
 566 
     | 
    
         
            +
             
     | 
| 
      
 567 
     | 
    
         
            +
                          # Australia Post Express Medium shipping service.
         
     | 
| 
      
 568 
     | 
    
         
            +
                          AUSTRALIA_POST_EXPRESS_M = 8
         
     | 
| 
      
 569 
     | 
    
         
            +
             
     | 
| 
      
 570 
     | 
    
         
            +
                          # Australia Post Express Large shipping service.
         
     | 
| 
      
 571 
     | 
    
         
            +
                          AUSTRALIA_POST_EXPRESS_L = 9
         
     | 
| 
      
 572 
     | 
    
         
            +
             
     | 
| 
      
 573 
     | 
    
         
            +
                          # Australia Post Express XL shipping service.
         
     | 
| 
      
 574 
     | 
    
         
            +
                          AUSTRALIA_POST_EXPRESS_XL = 10
         
     | 
| 
      
 575 
     | 
    
         
            +
             
     | 
| 
      
 576 
     | 
    
         
            +
                          # TNT Road Express shipping service.
         
     | 
| 
      
 577 
     | 
    
         
            +
                          TNT_ROAD_EXPRESS = 11
         
     | 
| 
      
 578 
     | 
    
         
            +
             
     | 
| 
      
 579 
     | 
    
         
            +
                          # TNT Overnight Express shipping service.
         
     | 
| 
      
 580 
     | 
    
         
            +
                          TNT_OVERNIGHT_EXPRESS = 12
         
     | 
| 
      
 581 
     | 
    
         
            +
             
     | 
| 
      
 582 
     | 
    
         
            +
                          # Toll Road Delivery shipping service.
         
     | 
| 
      
 583 
     | 
    
         
            +
                          TOLL_ROAD_DELIVERY = 13
         
     | 
| 
      
 584 
     | 
    
         
            +
             
     | 
| 
      
 585 
     | 
    
         
            +
                          # Toll Overnight Priority shipping service.
         
     | 
| 
      
 586 
     | 
    
         
            +
                          TOLL_OVERNIGHT_PRIORITY = 14
         
     | 
| 
      
 587 
     | 
    
         
            +
             
     | 
| 
      
 588 
     | 
    
         
            +
                          # DHL Paket shipping service.
         
     | 
| 
      
 589 
     | 
    
         
            +
                          DHL_PAKET = 15
         
     | 
| 
      
 590 
     | 
    
         
            +
             
     | 
| 
      
 591 
     | 
    
         
            +
                          # DHL Packchen shipping service.
         
     | 
| 
      
 592 
     | 
    
         
            +
                          DHL_PACKCHEN = 16
         
     | 
| 
      
 593 
     | 
    
         
            +
             
     | 
| 
      
 594 
     | 
    
         
            +
                          # DPD Express 12 shipping service.
         
     | 
| 
      
 595 
     | 
    
         
            +
                          DPD_EXPRESS_12 = 17
         
     | 
| 
      
 596 
     | 
    
         
            +
             
     | 
| 
      
 597 
     | 
    
         
            +
                          # DPD Express shipping service.
         
     | 
| 
      
 598 
     | 
    
         
            +
                          DPD_EXPRESS = 18
         
     | 
| 
      
 599 
     | 
    
         
            +
             
     | 
| 
      
 600 
     | 
    
         
            +
                          # DPD Classic Parcel shipping service.
         
     | 
| 
      
 601 
     | 
    
         
            +
                          DPD_CLASSIC_PARCEL = 19
         
     | 
| 
      
 602 
     | 
    
         
            +
             
     | 
| 
      
 603 
     | 
    
         
            +
                          # Hermes Packchen shipping service.
         
     | 
| 
      
 604 
     | 
    
         
            +
                          HERMES_PACKCHEN = 20
         
     | 
| 
      
 605 
     | 
    
         
            +
             
     | 
| 
      
 606 
     | 
    
         
            +
                          # Hermes Paketklasse S shipping service.
         
     | 
| 
      
 607 
     | 
    
         
            +
                          HERMES_PAKETKLASSE_S = 21
         
     | 
| 
      
 608 
     | 
    
         
            +
             
     | 
| 
      
 609 
     | 
    
         
            +
                          # Hermes Paketklasse M shipping service.
         
     | 
| 
      
 610 
     | 
    
         
            +
                          HERMES_PAKETKLASSE_M = 22
         
     | 
| 
      
 611 
     | 
    
         
            +
             
     | 
| 
      
 612 
     | 
    
         
            +
                          # Hermes Paketklasse L shipping service.
         
     | 
| 
      
 613 
     | 
    
         
            +
                          HERMES_PAKETKLASSE_L = 23
         
     | 
| 
      
 614 
     | 
    
         
            +
             
     | 
| 
      
 615 
     | 
    
         
            +
                          # UPS Express shipping service.
         
     | 
| 
      
 616 
     | 
    
         
            +
                          UPS_EXPRESS = 24
         
     | 
| 
      
 617 
     | 
    
         
            +
             
     | 
| 
      
 618 
     | 
    
         
            +
                          # UPS Express Saver shipping service.
         
     | 
| 
      
 619 
     | 
    
         
            +
                          UPS_EXPRESS_SAVER = 25
         
     | 
| 
      
 620 
     | 
    
         
            +
             
     | 
| 
      
 621 
     | 
    
         
            +
                          # UPS Express Standard shipping service.
         
     | 
| 
      
 622 
     | 
    
         
            +
                          UPS_EXPRESS_STANDARD = 26
         
     | 
| 
      
 623 
     | 
    
         
            +
             
     | 
| 
      
 624 
     | 
    
         
            +
                          # DHL Express shipping service.
         
     | 
| 
      
 625 
     | 
    
         
            +
                          DHL_EXPRESS = 27
         
     | 
| 
      
 626 
     | 
    
         
            +
             
     | 
| 
      
 627 
     | 
    
         
            +
                          # DHL Express 12 shipping service.
         
     | 
| 
      
 628 
     | 
    
         
            +
                          DHL_EXPRESS_12 = 28
         
     | 
| 
      
 629 
     | 
    
         
            +
             
     | 
| 
      
 630 
     | 
    
         
            +
                          # DPD Next Day shipping service.
         
     | 
| 
      
 631 
     | 
    
         
            +
                          DPD_NEXT_DAY = 29
         
     | 
| 
      
 632 
     | 
    
         
            +
             
     | 
| 
      
 633 
     | 
    
         
            +
                          # DPD Standard Next Day shipping service.
         
     | 
| 
      
 634 
     | 
    
         
            +
                          DPD_STANDARD_NEXT_DAY = 30
         
     | 
| 
      
 635 
     | 
    
         
            +
             
     | 
| 
      
 636 
     | 
    
         
            +
                          # DPD Standard Two Day shipping service.
         
     | 
| 
      
 637 
     | 
    
         
            +
                          DPD_STANDARD_TWO_DAY = 31
         
     | 
| 
      
 638 
     | 
    
         
            +
             
     | 
| 
      
 639 
     | 
    
         
            +
                          # RMG 1st Class Small shipping service.
         
     | 
| 
      
 640 
     | 
    
         
            +
                          RMG_1ST_CLASS_SMALL = 32
         
     | 
| 
      
 641 
     | 
    
         
            +
             
     | 
| 
      
 642 
     | 
    
         
            +
                          # RMG 1st Class Medium shipping service.
         
     | 
| 
      
 643 
     | 
    
         
            +
                          RMG_1ST_CLASS_MEDIUM = 33
         
     | 
| 
      
 644 
     | 
    
         
            +
             
     | 
| 
      
 645 
     | 
    
         
            +
                          # RMG 2nd Class Small shipping service.
         
     | 
| 
      
 646 
     | 
    
         
            +
                          RMG_2ND_CLASS_SMALL = 34
         
     | 
| 
      
 647 
     | 
    
         
            +
             
     | 
| 
      
 648 
     | 
    
         
            +
                          # RMG 2nd Class Medium shipping service.
         
     | 
| 
      
 649 
     | 
    
         
            +
                          RMG_2ND_CLASS_MEDIUM = 35
         
     | 
| 
      
 650 
     | 
    
         
            +
             
     | 
| 
      
 651 
     | 
    
         
            +
                          # TNT Express shipping service.
         
     | 
| 
      
 652 
     | 
    
         
            +
                          TNT_EXPRESS = 36
         
     | 
| 
      
 653 
     | 
    
         
            +
             
     | 
| 
      
 654 
     | 
    
         
            +
                          # TNT Express 10 shipping service.
         
     | 
| 
      
 655 
     | 
    
         
            +
                          TNT_EXPRESS_10 = 37
         
     | 
| 
      
 656 
     | 
    
         
            +
             
     | 
| 
      
 657 
     | 
    
         
            +
                          # TNT Express 12 shipping service.
         
     | 
| 
      
 658 
     | 
    
         
            +
                          TNT_EXPRESS_12 = 38
         
     | 
| 
      
 659 
     | 
    
         
            +
             
     | 
| 
      
 660 
     | 
    
         
            +
                          # Yodel B2C 48HR shipping service.
         
     | 
| 
      
 661 
     | 
    
         
            +
                          YODEL_B2C_48HR = 39
         
     | 
| 
      
 662 
     | 
    
         
            +
             
     | 
| 
      
 663 
     | 
    
         
            +
                          # Yodel B2C 72HR shipping service.
         
     | 
| 
      
 664 
     | 
    
         
            +
                          YODEL_B2C_72HR = 40
         
     | 
| 
      
 665 
     | 
    
         
            +
             
     | 
| 
      
 666 
     | 
    
         
            +
                          # Yodel B2C Packet shipping service.
         
     | 
| 
      
 667 
     | 
    
         
            +
                          YODEL_B2C_PACKET = 41
         
     | 
| 
      
 668 
     | 
    
         
            +
             
     | 
| 
      
 669 
     | 
    
         
            +
                          # FedEx Ground shipping service.
         
     | 
| 
      
 670 
     | 
    
         
            +
                          FEDEX_GROUND = 42
         
     | 
| 
      
 671 
     | 
    
         
            +
             
     | 
| 
      
 672 
     | 
    
         
            +
                          # FedEx Home Delivery shipping service.
         
     | 
| 
      
 673 
     | 
    
         
            +
                          FEDEX_HOME_DELIVERY = 43
         
     | 
| 
      
 674 
     | 
    
         
            +
             
     | 
| 
      
 675 
     | 
    
         
            +
                          # FedEx Express Saver shipping service.
         
     | 
| 
      
 676 
     | 
    
         
            +
                          FEDEX_EXPRESS_SAVER = 44
         
     | 
| 
      
 677 
     | 
    
         
            +
             
     | 
| 
      
 678 
     | 
    
         
            +
                          # FedEx First Overnight shipping service.
         
     | 
| 
      
 679 
     | 
    
         
            +
                          FEDEX_FIRST_OVERNIGHT = 45
         
     | 
| 
      
 680 
     | 
    
         
            +
             
     | 
| 
      
 681 
     | 
    
         
            +
                          # FedEx Priority Overnight shipping service.
         
     | 
| 
      
 682 
     | 
    
         
            +
                          FEDEX_PRIORITY_OVERNIGHT = 46
         
     | 
| 
      
 683 
     | 
    
         
            +
             
     | 
| 
      
 684 
     | 
    
         
            +
                          # FedEx Standard Overnight shipping service.
         
     | 
| 
      
 685 
     | 
    
         
            +
                          FEDEX_STANDARD_OVERNIGHT = 47
         
     | 
| 
      
 686 
     | 
    
         
            +
             
     | 
| 
      
 687 
     | 
    
         
            +
                          # FedEx 2Day shipping service.
         
     | 
| 
      
 688 
     | 
    
         
            +
                          FEDEX_2DAY = 48
         
     | 
| 
      
 689 
     | 
    
         
            +
             
     | 
| 
      
 690 
     | 
    
         
            +
                          # UPS Standard shipping service.
         
     | 
| 
      
 691 
     | 
    
         
            +
                          UPS_STANDARD = 49
         
     | 
| 
      
 692 
     | 
    
         
            +
             
     | 
| 
      
 693 
     | 
    
         
            +
                          # UPS 2nd Day Air shipping service.
         
     | 
| 
      
 694 
     | 
    
         
            +
                          UPS_2ND_DAY_AIR = 50
         
     | 
| 
      
 695 
     | 
    
         
            +
             
     | 
| 
      
 696 
     | 
    
         
            +
                          # UPS 2nd Day AM shipping service.
         
     | 
| 
      
 697 
     | 
    
         
            +
                          UPS_2ND_DAY_AM = 51
         
     | 
| 
      
 698 
     | 
    
         
            +
             
     | 
| 
      
 699 
     | 
    
         
            +
                          # UPS 3 Day Select shipping service.
         
     | 
| 
      
 700 
     | 
    
         
            +
                          UPS_3_DAY_SELECT = 52
         
     | 
| 
      
 701 
     | 
    
         
            +
             
     | 
| 
      
 702 
     | 
    
         
            +
                          # UPS Ground shipping service.
         
     | 
| 
      
 703 
     | 
    
         
            +
                          UPS_GROUND = 53
         
     | 
| 
      
 704 
     | 
    
         
            +
             
     | 
| 
      
 705 
     | 
    
         
            +
                          # UPS Next Day Air shipping service.
         
     | 
| 
      
 706 
     | 
    
         
            +
                          UPS_NEXT_DAY_AIR = 54
         
     | 
| 
      
 707 
     | 
    
         
            +
             
     | 
| 
      
 708 
     | 
    
         
            +
                          # UPS Next Day Air Early AM shipping service.
         
     | 
| 
      
 709 
     | 
    
         
            +
                          UPS_NEXT_DAY_AIR_EARLY_AM = 55
         
     | 
| 
      
 710 
     | 
    
         
            +
             
     | 
| 
      
 711 
     | 
    
         
            +
                          # UPS Next Day Air Saver shipping service.
         
     | 
| 
      
 712 
     | 
    
         
            +
                          UPS_NEXT_DAY_AIR_SAVER = 56
         
     | 
| 
      
 713 
     | 
    
         
            +
             
     | 
| 
      
 714 
     | 
    
         
            +
                          # USPS Priority Mail Express shipping service.
         
     | 
| 
      
 715 
     | 
    
         
            +
                          USPS_PRIORITY_MAIL_EXPRESS = 57
         
     | 
| 
      
 716 
     | 
    
         
            +
             
     | 
| 
      
 717 
     | 
    
         
            +
                          # USPS Media Mail shipping service.
         
     | 
| 
      
 718 
     | 
    
         
            +
                          USPS_MEDIA_MAIL = 58
         
     | 
| 
      
 719 
     | 
    
         
            +
             
     | 
| 
      
 720 
     | 
    
         
            +
                          # USPS Ground Advantage Retail shipping service.
         
     | 
| 
      
 721 
     | 
    
         
            +
                          USPS_GROUND_ADVANTAGE_RETAIL = 59
         
     | 
| 
      
 722 
     | 
    
         
            +
             
     | 
| 
      
 723 
     | 
    
         
            +
                          # USPS Priority Mail shipping service.
         
     | 
| 
      
 724 
     | 
    
         
            +
                          USPS_PRIORITY_MAIL = 60
         
     | 
| 
      
 725 
     | 
    
         
            +
             
     | 
| 
      
 726 
     | 
    
         
            +
                          # USPS Ground Advantage Commercial shipping service.
         
     | 
| 
      
 727 
     | 
    
         
            +
                          USPS_GROUND_ADVANTAGE_COMMERCIAL = 61
         
     | 
| 
      
 728 
     | 
    
         
            +
                        end
         
     | 
| 
       419 
729 
     | 
    
         
             
                      end
         
     | 
| 
       420 
730 
     | 
    
         | 
| 
       421 
731 
     | 
    
         
             
                      # The ShippingWeight of the product.
         
     | 
| 
         @@ -1296,6 +1606,129 @@ module Google 
     | 
|
| 
       1296 
1606 
     | 
    
         
             
                        # content (the default)
         
     | 
| 
       1297 
1607 
     | 
    
         
             
                        DEFAULT = 2
         
     | 
| 
       1298 
1608 
     | 
    
         
             
                      end
         
     | 
| 
      
 1609 
     | 
    
         
            +
             
     | 
| 
      
 1610 
     | 
    
         
            +
                      # Possible carrier where transit time is coming from.
         
     | 
| 
      
 1611 
     | 
    
         
            +
                      module CarrierTransitTimeOption
         
     | 
| 
      
 1612 
     | 
    
         
            +
                        # Carrier transit time option is unspecified.
         
     | 
| 
      
 1613 
     | 
    
         
            +
                        CARRIER_TRANSIT_TIME_OPTION_UNSPECIFIED = 0
         
     | 
| 
      
 1614 
     | 
    
         
            +
             
     | 
| 
      
 1615 
     | 
    
         
            +
                        # DHL Paket shipping service.
         
     | 
| 
      
 1616 
     | 
    
         
            +
                        DHL_PAKET = 1
         
     | 
| 
      
 1617 
     | 
    
         
            +
             
     | 
| 
      
 1618 
     | 
    
         
            +
                        # DHL Packchen shipping service.
         
     | 
| 
      
 1619 
     | 
    
         
            +
                        DHL_PACKCHEN = 2
         
     | 
| 
      
 1620 
     | 
    
         
            +
             
     | 
| 
      
 1621 
     | 
    
         
            +
                        # DHL Express Easy shipping service.
         
     | 
| 
      
 1622 
     | 
    
         
            +
                        DHL_EXPRESSEASY = 3
         
     | 
| 
      
 1623 
     | 
    
         
            +
             
     | 
| 
      
 1624 
     | 
    
         
            +
                        # DPD Express shipping service.
         
     | 
| 
      
 1625 
     | 
    
         
            +
                        DPD_EXPRESS = 4
         
     | 
| 
      
 1626 
     | 
    
         
            +
             
     | 
| 
      
 1627 
     | 
    
         
            +
                        # DPD Classic Parcel shipping service.
         
     | 
| 
      
 1628 
     | 
    
         
            +
                        DPD_CLASSIC_PARCEL = 5
         
     | 
| 
      
 1629 
     | 
    
         
            +
             
     | 
| 
      
 1630 
     | 
    
         
            +
                        # Hermes Haustur shipping service.
         
     | 
| 
      
 1631 
     | 
    
         
            +
                        HERMES_HAUSTUR = 6
         
     | 
| 
      
 1632 
     | 
    
         
            +
             
     | 
| 
      
 1633 
     | 
    
         
            +
                        # Hermes Paketshop shipping service.
         
     | 
| 
      
 1634 
     | 
    
         
            +
                        HERMES_PAKETSHOP = 7
         
     | 
| 
      
 1635 
     | 
    
         
            +
             
     | 
| 
      
 1636 
     | 
    
         
            +
                        # GLS Business shipping service.
         
     | 
| 
      
 1637 
     | 
    
         
            +
                        GLS_BUSINESS = 8
         
     | 
| 
      
 1638 
     | 
    
         
            +
             
     | 
| 
      
 1639 
     | 
    
         
            +
                        # GLS Express shipping service.
         
     | 
| 
      
 1640 
     | 
    
         
            +
                        GLS_EXPRESS = 9
         
     | 
| 
      
 1641 
     | 
    
         
            +
             
     | 
| 
      
 1642 
     | 
    
         
            +
                        # GLS Private shipping service.
         
     | 
| 
      
 1643 
     | 
    
         
            +
                        GLS_PRIVATE = 10
         
     | 
| 
      
 1644 
     | 
    
         
            +
             
     | 
| 
      
 1645 
     | 
    
         
            +
                        # Colissimo Domicile shipping service.
         
     | 
| 
      
 1646 
     | 
    
         
            +
                        COLISSIMO_DOMICILE = 11
         
     | 
| 
      
 1647 
     | 
    
         
            +
             
     | 
| 
      
 1648 
     | 
    
         
            +
                        # DHL Express 12 AM shipping service.
         
     | 
| 
      
 1649 
     | 
    
         
            +
                        DHL_EXPRESS_12AM = 12
         
     | 
| 
      
 1650 
     | 
    
         
            +
             
     | 
| 
      
 1651 
     | 
    
         
            +
                        # DHL Express 9 AM shipping service.
         
     | 
| 
      
 1652 
     | 
    
         
            +
                        DHL_EXPRESS_9AM = 13
         
     | 
| 
      
 1653 
     | 
    
         
            +
             
     | 
| 
      
 1654 
     | 
    
         
            +
                        # GEODIS Express shipping service.
         
     | 
| 
      
 1655 
     | 
    
         
            +
                        GEODIS_EXPRESS = 14
         
     | 
| 
      
 1656 
     | 
    
         
            +
             
     | 
| 
      
 1657 
     | 
    
         
            +
                        # GEODIS Pack 30 shipping service.
         
     | 
| 
      
 1658 
     | 
    
         
            +
                        GEODIS_PACK_30 = 15
         
     | 
| 
      
 1659 
     | 
    
         
            +
             
     | 
| 
      
 1660 
     | 
    
         
            +
                        # GEODIS Same Day shipping service.
         
     | 
| 
      
 1661 
     | 
    
         
            +
                        GEODIS_SAME_DAY = 16
         
     | 
| 
      
 1662 
     | 
    
         
            +
             
     | 
| 
      
 1663 
     | 
    
         
            +
                        # GEODIS Top 24 shipping service.
         
     | 
| 
      
 1664 
     | 
    
         
            +
                        GEODIS_TOP_24 = 17
         
     | 
| 
      
 1665 
     | 
    
         
            +
             
     | 
| 
      
 1666 
     | 
    
         
            +
                        # TNT Essentiel 24H shipping service.
         
     | 
| 
      
 1667 
     | 
    
         
            +
                        TNT_ESSENTIEL_24H = 18
         
     | 
| 
      
 1668 
     | 
    
         
            +
             
     | 
| 
      
 1669 
     | 
    
         
            +
                        # TNT Essentiel Flexibilite shipping service.
         
     | 
| 
      
 1670 
     | 
    
         
            +
                        TNT_ESSENTIEL_FLEXIBILITE = 19
         
     | 
| 
      
 1671 
     | 
    
         
            +
             
     | 
| 
      
 1672 
     | 
    
         
            +
                        # FedEx Ground shipping service.
         
     | 
| 
      
 1673 
     | 
    
         
            +
                        FEDEX_GROUND = 20
         
     | 
| 
      
 1674 
     | 
    
         
            +
             
     | 
| 
      
 1675 
     | 
    
         
            +
                        # FedEx Home Delivery shipping service.
         
     | 
| 
      
 1676 
     | 
    
         
            +
                        FEDEX_HOME_DELIVERY = 21
         
     | 
| 
      
 1677 
     | 
    
         
            +
             
     | 
| 
      
 1678 
     | 
    
         
            +
                        # FedEx Express Saver shipping service.
         
     | 
| 
      
 1679 
     | 
    
         
            +
                        FEDEX_EXPRESS_SAVER = 22
         
     | 
| 
      
 1680 
     | 
    
         
            +
             
     | 
| 
      
 1681 
     | 
    
         
            +
                        # FedEx First Overnight shipping service.
         
     | 
| 
      
 1682 
     | 
    
         
            +
                        FEDEX_FIRST_OVERNIGHT = 23
         
     | 
| 
      
 1683 
     | 
    
         
            +
             
     | 
| 
      
 1684 
     | 
    
         
            +
                        # FedEx Priority Overnight shipping service.
         
     | 
| 
      
 1685 
     | 
    
         
            +
                        FEDEX_PRIORITY_OVERNIGHT = 24
         
     | 
| 
      
 1686 
     | 
    
         
            +
             
     | 
| 
      
 1687 
     | 
    
         
            +
                        # FedEx Standard Overnight shipping service.
         
     | 
| 
      
 1688 
     | 
    
         
            +
                        FEDEX_STANDARD_OVERNIGHT = 25
         
     | 
| 
      
 1689 
     | 
    
         
            +
             
     | 
| 
      
 1690 
     | 
    
         
            +
                        # FedEx 2Day shipping service.
         
     | 
| 
      
 1691 
     | 
    
         
            +
                        FEDEX_2DAY = 26
         
     | 
| 
      
 1692 
     | 
    
         
            +
             
     | 
| 
      
 1693 
     | 
    
         
            +
                        # UPS 2nd Day Air shipping service.
         
     | 
| 
      
 1694 
     | 
    
         
            +
                        UPS_2ND_DAY_AIR = 27
         
     | 
| 
      
 1695 
     | 
    
         
            +
             
     | 
| 
      
 1696 
     | 
    
         
            +
                        # UPS 2nd Day AM shipping service.
         
     | 
| 
      
 1697 
     | 
    
         
            +
                        UPS_2ND_DAY_AM = 28
         
     | 
| 
      
 1698 
     | 
    
         
            +
             
     | 
| 
      
 1699 
     | 
    
         
            +
                        # UPS 3 Day Select shipping service.
         
     | 
| 
      
 1700 
     | 
    
         
            +
                        UPS_3_DAY_SELECT = 29
         
     | 
| 
      
 1701 
     | 
    
         
            +
             
     | 
| 
      
 1702 
     | 
    
         
            +
                        # UPS Ground shipping service.
         
     | 
| 
      
 1703 
     | 
    
         
            +
                        UPS_GROUND = 30
         
     | 
| 
      
 1704 
     | 
    
         
            +
             
     | 
| 
      
 1705 
     | 
    
         
            +
                        # UPS Next Day Air shipping service.
         
     | 
| 
      
 1706 
     | 
    
         
            +
                        UPS_NEXT_DAY_AIR = 31
         
     | 
| 
      
 1707 
     | 
    
         
            +
             
     | 
| 
      
 1708 
     | 
    
         
            +
                        # UPS Next Day Air Early AM shipping service.
         
     | 
| 
      
 1709 
     | 
    
         
            +
                        UPS_NEXT_DAY_AIR_EARLY_AM = 32
         
     | 
| 
      
 1710 
     | 
    
         
            +
             
     | 
| 
      
 1711 
     | 
    
         
            +
                        # UPS Next Day Air Saver shipping service.
         
     | 
| 
      
 1712 
     | 
    
         
            +
                        UPS_NEXT_DAY_AIR_SAVER = 33
         
     | 
| 
      
 1713 
     | 
    
         
            +
             
     | 
| 
      
 1714 
     | 
    
         
            +
                        # USPS Priority Mail Express shipping service.
         
     | 
| 
      
 1715 
     | 
    
         
            +
                        USPS_PRIORITY_MAIL_EXPRESS = 34
         
     | 
| 
      
 1716 
     | 
    
         
            +
             
     | 
| 
      
 1717 
     | 
    
         
            +
                        # USPS Media Mail shipping service.
         
     | 
| 
      
 1718 
     | 
    
         
            +
                        USPS_MEDIA_MAIL = 35
         
     | 
| 
      
 1719 
     | 
    
         
            +
             
     | 
| 
      
 1720 
     | 
    
         
            +
                        # USPS Ground Advantage Retail shipping service.
         
     | 
| 
      
 1721 
     | 
    
         
            +
                        USPS_GROUND_ADVANTAGE_RETAIL = 36
         
     | 
| 
      
 1722 
     | 
    
         
            +
             
     | 
| 
      
 1723 
     | 
    
         
            +
                        # USPS Priority Mail shipping service.
         
     | 
| 
      
 1724 
     | 
    
         
            +
                        USPS_PRIORITY_MAIL = 37
         
     | 
| 
      
 1725 
     | 
    
         
            +
             
     | 
| 
      
 1726 
     | 
    
         
            +
                        # USPS Ground Advantage Commercial shipping service.
         
     | 
| 
      
 1727 
     | 
    
         
            +
                        USPS_GROUND_ADVANTAGE_COMMERCIAL = 38
         
     | 
| 
      
 1728 
     | 
    
         
            +
             
     | 
| 
      
 1729 
     | 
    
         
            +
                        # USPS First Class Mail shipping service.
         
     | 
| 
      
 1730 
     | 
    
         
            +
                        USPS_FIRST_CLASS_MAIL = 39
         
     | 
| 
      
 1731 
     | 
    
         
            +
                      end
         
     | 
| 
       1299 
1732 
     | 
    
         
             
                    end
         
     | 
| 
       1300 
1733 
     | 
    
         
             
                  end
         
     | 
| 
       1301 
1734 
     | 
    
         
             
                end
         
     |