pub struct IssuingAuthorizationFleetData {
pub cardholder_prompt_data: Option<IssuingAuthorizationFleetCardholderPromptData>,
pub purchase_type: Option<IssuingAuthorizationFleetDataPurchaseType>,
pub reported_breakdown: Option<IssuingAuthorizationFleetReportedBreakdown>,
pub service_type: Option<IssuingAuthorizationFleetDataServiceType>,
}
Fields§
§cardholder_prompt_data: Option<IssuingAuthorizationFleetCardholderPromptData>
Answers to prompts presented to the cardholder at the point of sale. Prompted fields vary depending on the configuration of your physical fleet cards. Typical points of sale support only numeric entry.
purchase_type: Option<IssuingAuthorizationFleetDataPurchaseType>
The type of purchase.
reported_breakdown: Option<IssuingAuthorizationFleetReportedBreakdown>
More information about the total amount. Typically this information is received from the merchant after the authorization has been approved and the fuel dispensed. This information is not guaranteed to be accurate as some merchants may provide unreliable data.
service_type: Option<IssuingAuthorizationFleetDataServiceType>
The type of fuel service.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationFleetData
impl Clone for IssuingAuthorizationFleetData
Source§fn clone(&self) -> IssuingAuthorizationFleetData
fn clone(&self) -> IssuingAuthorizationFleetData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for IssuingAuthorizationFleetData
impl RefUnwindSafe for IssuingAuthorizationFleetData
impl Send for IssuingAuthorizationFleetData
impl Sync for IssuingAuthorizationFleetData
impl Unpin for IssuingAuthorizationFleetData
impl UnwindSafe for IssuingAuthorizationFleetData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more