/*
* Selling Partner API for Fulfillment Inbound
*
* The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.
*
* The version of the OpenAPI document: v0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// GetBillOfLadingResponse : The response schema for the getBillOfLading operation.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetBillOfLadingResponse {
#[serde(rename = "payload", skip_serializing_if = "Option::is_none")]
pub payload: Option<Box<models::fulfillment_inbound_v0::BillOfLadingDownloadUrl>>,
/// A list of error responses returned when a request is unsuccessful.
#[serde(rename = "errors", skip_serializing_if = "Option::is_none")]
pub errors: Option<Vec<models::fulfillment_inbound_v0::Error>>,
}
impl GetBillOfLadingResponse {
/// The response schema for the getBillOfLading operation.
pub fn new() -> GetBillOfLadingResponse {
GetBillOfLadingResponse {
payload: None,
errors: None,
}
}
}