pub struct IssuingAuthorizationFleetCardholderPromptData {
pub alphanumeric_id: Option<String>,
pub driver_id: Option<String>,
pub odometer: Option<i64>,
pub unspecified_id: Option<String>,
pub user_id: Option<String>,
pub vehicle_number: Option<String>,
}
Fields§
§alphanumeric_id: Option<String>
[Deprecated] An alphanumeric ID, though typical point of sales only support numeric entry. The card program can be configured to prompt for a vehicle ID, driver ID, or generic ID.
driver_id: Option<String>
Driver ID.
odometer: Option<i64>
Odometer reading.
unspecified_id: Option<String>
An alphanumeric ID. This field is used when a vehicle ID, driver ID, or generic ID is entered by the cardholder, but the merchant or card network did not specify the prompt type.
user_id: Option<String>
User ID.
vehicle_number: Option<String>
Vehicle number.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationFleetCardholderPromptData
impl Clone for IssuingAuthorizationFleetCardholderPromptData
Source§fn clone(&self) -> IssuingAuthorizationFleetCardholderPromptData
fn clone(&self) -> IssuingAuthorizationFleetCardholderPromptData
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 IssuingAuthorizationFleetCardholderPromptData
impl RefUnwindSafe for IssuingAuthorizationFleetCardholderPromptData
impl Send for IssuingAuthorizationFleetCardholderPromptData
impl Sync for IssuingAuthorizationFleetCardholderPromptData
impl Unpin for IssuingAuthorizationFleetCardholderPromptData
impl UnwindSafe for IssuingAuthorizationFleetCardholderPromptData
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