agentic_commerce_protocol/models/
payment_provider.rs

1// this file is @generated
2use serde::{Deserialize, Serialize};
3
4use super::{payment_method_type::PaymentMethodType, payment_provider_type::PaymentProviderType};
5
6#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
7pub struct PaymentProvider {
8    pub provider: PaymentProviderType,
9    pub supported_payment_methods: Vec<PaymentMethodType>,
10}