agentic_commerce_protocol/models/
allowance.rs

1// this file is @generated
2use serde::{Deserialize, Serialize};
3
4use super::allowance_reason::AllowanceReason;
5
6#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
7pub struct Allowance {
8    pub reason: AllowanceReason,
9    pub max_amount: i32,
10    pub currency: String,
11    pub checkout_session_id: String,
12    pub merchant_id: String,
13    pub expires_at: String,
14}