amazon_spapi/models/orders_v0/
update_verification_status_request.rs

1/*
2 * Selling Partner API for Orders
3 *
4 * Use the Orders Selling Partner API to programmatically retrieve order information. With this API, you can develop fast, flexible, and custom applications to manage order synchronization, perform order research, and create demand-based decision support tools.   _Note:_ For the JP, AU, and SG marketplaces, the Orders API supports orders from 2016 onward. For all other marketplaces, the Orders API supports orders for the last two years (orders older than this don't show up in the response).
5 *
6 * The version of the OpenAPI document: v0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// UpdateVerificationStatusRequest : The request body for the `updateVerificationStatus` operation.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct UpdateVerificationStatusRequest {
17    #[serde(rename = "regulatedOrderVerificationStatus")]
18    pub regulated_order_verification_status: Box<models::orders_v0::UpdateVerificationStatusRequestBody>,
19}
20
21impl UpdateVerificationStatusRequest {
22    /// The request body for the `updateVerificationStatus` operation.
23    pub fn new(regulated_order_verification_status: models::orders_v0::UpdateVerificationStatusRequestBody) -> UpdateVerificationStatusRequest {
24        UpdateVerificationStatusRequest {
25            regulated_order_verification_status: Box::new(regulated_order_verification_status),
26        }
27    }
28}
29