/*
* 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};
/// GetPrepInstructionsResponse : The response schema for the getPrepInstructions operation.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetPrepInstructionsResponse {
#[serde(rename = "payload", skip_serializing_if = "Option::is_none")]
pub payload: Option<Box<models::fulfillment_inbound_v0::GetPrepInstructionsResult>>,
/// 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 GetPrepInstructionsResponse {
/// The response schema for the getPrepInstructions operation.
pub fn new() -> GetPrepInstructionsResponse {
GetPrepInstructionsResponse {
payload: None,
errors: None,
}
}
}