amazon_spapi/models/fulfillment_inbound_v0/
get_prep_instructions_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GetPrepInstructionsResponse {
17 #[serde(rename = "payload", skip_serializing_if = "Option::is_none")]
18 pub payload: Option<Box<models::fulfillment_inbound_v0::GetPrepInstructionsResult>>,
19 #[serde(rename = "errors", skip_serializing_if = "Option::is_none")]
21 pub errors: Option<Vec<models::fulfillment_inbound_v0::Error>>,
22}
23
24impl GetPrepInstructionsResponse {
25 pub fn new() -> GetPrepInstructionsResponse {
27 GetPrepInstructionsResponse {
28 payload: None,
29 errors: None,
30 }
31 }
32}
33