Content API for Shopping . ordertrackingsignals

Instance Methods

close()

Close httplib2 connections.

create(merchantId, body=None, x__xgafv=None)

Creates new order tracking signal.

Method Details

close()
Close httplib2 connections.
create(merchantId, body=None, x__xgafv=None)
Creates new order tracking signal.

Args:
  merchantId: string, The ID of the merchant for which the order signal is created. (required)
  body: object, The request body.
    The object takes the form of:

{ # Represents a merchant trade from which signals are extracted, e.g. shipping.
    "lineItems": [ # Information about line items in the order.
      { # The line items of the order.
        "quantity": "A String", # Required. The quantity of the line item in the order.
        "lineItemId": "A String", # Required. The ID for this line item.
        "productId": "A String", # Required. The Content API REST ID of the product, in the form channel:contentLanguage:targetCountry:offerId.
        "mpn": "A String", # The manufacturer part number.
        "gtin": "A String", # The Global Trade Item Number.
      },
    ],
    "shippingInfo": [ # The shipping information for the order.
      { # The shipping information for the order.
        "carrierServiceName": "A String", # The service type for fulfillment, e.g., GROUND, FIRST_CLASS, etc.
        "earliestDeliveryPromiseTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The earliest delivery promised time. Include the year and timezone string, if available. This field is required, if one of the following fields is absent: tracking_id or carrier_name.
          "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
          "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
          "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
          "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
          "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
          "month": 42, # Required. Month of year. Must be from 1 to 12.
          "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
          "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
            "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
            "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
          },
          "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
        },
        "carrierName": "A String", # The name of the shipping carrier for the delivery. This field is required if one of the following fields is absent: earliest_delivery_promise_time, latest_delivery_promise_time, and actual_delivery_time.
        "actualDeliveryTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The time when the shipment was actually delivered. Include the year and timezone string, if available. This field is required, if one of the following fields is absent: tracking_id or carrier_name.
          "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
          "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
          "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
          "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
          "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
          "month": 42, # Required. Month of year. Must be from 1 to 12.
          "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
          "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
            "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
            "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
          },
          "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
        },
        "shippedTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The time when the shipment was shipped. Include the year and timezone string, if available.
          "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
          "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
          "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
          "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
          "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
          "month": 42, # Required. Month of year. Must be from 1 to 12.
          "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
          "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
            "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
            "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
          },
          "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
        },
        "originRegionCode": "A String", # The [CLDR territory code] (http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) for the shipping origin.
        "originPostalCode": "A String", # The origin postal code, as a continuous string without spaces or dashes, e.g. "95016".
        "latestDeliveryPromiseTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The latest delivery promised time. Include the year and timezone string, if available. This field is required, if one of the following fields is absent: tracking_id or carrier_name.
          "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
          "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
          "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
          "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
          "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
          "month": 42, # Required. Month of year. Must be from 1 to 12.
          "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
          "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
            "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
            "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
          },
          "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
        },
        "trackingId": "A String", # The tracking ID of the shipment. This field is required if one of the following fields is absent: earliest_delivery_promise_time, latest_delivery_promise_time, and actual_delivery_time.
        "shipmentId": "A String", # Required. The shipment ID.
        "shippingStatus": "A String", # The status of the shipment.
      },
    ],
    "merchantId": "A String", # The Google merchant ID of this order tracking signal. This value is optional. If left unset, the caller's merchant ID is used. You must request access in order to provide data on behalf of another merchant. For more information, see [Submitting Order Tracking Signals](/shopping-content/guides/order-tracking-signals).
    "orderId": "A String", # Required. The ID of the order on the merchant side.
    "shipmentLineItemMapping": [ # The mapping of the line items to the shipment information.
      { # Represents how many items are in the shipment for the given shipment_id and line_item_id.
        "quantity": "A String", # Required. The line item quantity in the shipment.
        "shipmentId": "A String", # Required. The shipment ID.
        "lineItemId": "A String", # Required. The line item ID.
      },
    ],
    "customerShippingFee": { # The price represented as a number and currency. # The shipping fee of the order; this value should be set to zero in the case of free shipping.
      "value": "A String", # The price represented as a number.
      "currency": "A String", # The currency of the price.
    },
    "deliveryPostalCode": "A String", # Required. The delivery postal code, as a continuous string without spaces or dashes, e.g. "95016".
    "orderCreatedTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # Required. The time when the order was created on the merchant side. Include the year and timezone string, if available.
      "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
      "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
      "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
      "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
      "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
      "month": 42, # Required. Month of year. Must be from 1 to 12.
      "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
      "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
        "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
        "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
      },
      "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
    },
    "deliveryRegionCode": "A String", # Required. The [CLDR territory code] (http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) for the shipping destination.
    "orderTrackingSignalId": "A String", # Output only. The ID that uniquely identifies this order tracking signal.
  }

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Represents a merchant trade from which signals are extracted, e.g. shipping.
      "lineItems": [ # Information about line items in the order.
        { # The line items of the order.
          "quantity": "A String", # Required. The quantity of the line item in the order.
          "lineItemId": "A String", # Required. The ID for this line item.
          "productId": "A String", # Required. The Content API REST ID of the product, in the form channel:contentLanguage:targetCountry:offerId.
          "mpn": "A String", # The manufacturer part number.
          "gtin": "A String", # The Global Trade Item Number.
        },
      ],
      "shippingInfo": [ # The shipping information for the order.
        { # The shipping information for the order.
          "carrierServiceName": "A String", # The service type for fulfillment, e.g., GROUND, FIRST_CLASS, etc.
          "earliestDeliveryPromiseTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The earliest delivery promised time. Include the year and timezone string, if available. This field is required, if one of the following fields is absent: tracking_id or carrier_name.
            "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
            "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
            "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
            "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
            "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
            "month": 42, # Required. Month of year. Must be from 1 to 12.
            "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
            "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
              "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
              "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
            },
            "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
          },
          "carrierName": "A String", # The name of the shipping carrier for the delivery. This field is required if one of the following fields is absent: earliest_delivery_promise_time, latest_delivery_promise_time, and actual_delivery_time.
          "actualDeliveryTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The time when the shipment was actually delivered. Include the year and timezone string, if available. This field is required, if one of the following fields is absent: tracking_id or carrier_name.
            "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
            "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
            "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
            "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
            "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
            "month": 42, # Required. Month of year. Must be from 1 to 12.
            "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
            "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
              "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
              "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
            },
            "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
          },
          "shippedTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The time when the shipment was shipped. Include the year and timezone string, if available.
            "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
            "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
            "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
            "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
            "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
            "month": 42, # Required. Month of year. Must be from 1 to 12.
            "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
            "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
              "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
              "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
            },
            "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
          },
          "originRegionCode": "A String", # The [CLDR territory code] (http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) for the shipping origin.
          "originPostalCode": "A String", # The origin postal code, as a continuous string without spaces or dashes, e.g. "95016".
          "latestDeliveryPromiseTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # The latest delivery promised time. Include the year and timezone string, if available. This field is required, if one of the following fields is absent: tracking_id or carrier_name.
            "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
            "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
            "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
            "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
            "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
            "month": 42, # Required. Month of year. Must be from 1 to 12.
            "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
            "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
              "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
              "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
            },
            "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
          },
          "trackingId": "A String", # The tracking ID of the shipment. This field is required if one of the following fields is absent: earliest_delivery_promise_time, latest_delivery_promise_time, and actual_delivery_time.
          "shipmentId": "A String", # Required. The shipment ID.
          "shippingStatus": "A String", # The status of the shipment.
        },
      ],
      "merchantId": "A String", # The Google merchant ID of this order tracking signal. This value is optional. If left unset, the caller's merchant ID is used. You must request access in order to provide data on behalf of another merchant. For more information, see [Submitting Order Tracking Signals](/shopping-content/guides/order-tracking-signals).
      "orderId": "A String", # Required. The ID of the order on the merchant side.
      "shipmentLineItemMapping": [ # The mapping of the line items to the shipment information.
        { # Represents how many items are in the shipment for the given shipment_id and line_item_id.
          "quantity": "A String", # Required. The line item quantity in the shipment.
          "shipmentId": "A String", # Required. The shipment ID.
          "lineItemId": "A String", # Required. The line item ID.
        },
      ],
      "customerShippingFee": { # The price represented as a number and currency. # The shipping fee of the order; this value should be set to zero in the case of free shipping.
        "value": "A String", # The price represented as a number.
        "currency": "A String", # The currency of the price.
      },
      "deliveryPostalCode": "A String", # Required. The delivery postal code, as a continuous string without spaces or dashes, e.g. "95016".
      "orderCreatedTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non-zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # Required. The time when the order was created on the merchant side. Include the year and timezone string, if available.
        "minutes": 42, # Required. Minutes of hour of day. Must be from 0 to 59.
        "hours": 42, # Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
        "seconds": 42, # Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
        "day": 42, # Required. Day of month. Must be from 1 to 31 and valid for the year and month.
        "nanos": 42, # Required. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
        "month": 42, # Required. Month of year. Must be from 1 to 12.
        "utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
        "timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
          "version": "A String", # Optional. IANA Time Zone Database version number, e.g. "2019a".
          "id": "A String", # IANA Time Zone Database time zone, e.g. "America/New_York".
        },
        "year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
      },
      "deliveryRegionCode": "A String", # Required. The [CLDR territory code] (http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) for the shipping destination.
      "orderTrackingSignalId": "A String", # Output only. The ID that uniquely identifies this order tracking signal.
    }