/*
* Selling Partner API for Retail Procurement Payments
*
* The Selling Partner API for Retail Procurement Payments provides programmatic access to vendors payments data.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// TransactionId : Response containing the transaction ID.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TransactionId {
/// GUID to identify this transaction. This value can be used with the Transaction Status API to return the status of this transaction.
#[serde(rename = "transactionId", skip_serializing_if = "Option::is_none")]
pub transaction_id: Option<String>,
}
impl TransactionId {
/// Response containing the transaction ID.
pub fn new() -> TransactionId {
TransactionId {
transaction_id: None,
}
}
}