/*
* Selling Partner API for Retail Procurement Shipments
*
* The Selling Partner API for Retail Procurement Shipments provides programmatic access to retail shipping data for vendors.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// Pagination : The pagination elements required to retrieve the remaining data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Pagination {
/// A generated string used to pass information to your next request. If NextToken is returned, pass the value of NextToken to the next request. If NextToken is not returned, there are no more shipment items to return.
#[serde(rename = "nextToken", skip_serializing_if = "Option::is_none")]
pub next_token: Option<String>,
}
impl Pagination {
/// The pagination elements required to retrieve the remaining data.
pub fn new() -> Pagination {
Pagination {
next_token: None,
}
}
}