pub struct PreAuthResponse {Show 14 fields
pub outcome: TransactionOutcome,
pub result_code: String,
pub pan: String,
pub transaction_type: String,
pub auth_code: String,
pub pre_authorized_amount: String,
pub pre_auth_code: String,
pub action_code: String,
pub host_date_time: String,
pub error_description: String,
pub card_type: String,
pub acquirer_id: String,
pub stan: String,
pub online_id: String,
}Expand description
Raw pre-auth response ('e').
Fields§
§outcome: TransactionOutcomeNormalized outcome.
result_code: StringRaw result code.
pan: StringPAN, raw.
transaction_type: StringTransaction/entry type, raw.
auth_code: StringAuthorization code, raw.
Pre-authorized amount (8 digits, cents), raw.
pre_auth_code: StringPre-auth code (9 digits), raw.
action_code: StringAction code, raw.
host_date_time: StringHost date/time, raw.
error_description: StringError description, raw.
card_type: StringCard type, raw.
acquirer_id: StringAcquirer id, raw.
stan: StringSTAN, raw.
online_id: StringOnline id, raw.
Trait Implementations§
Source§impl Clone for PreAuthResponse
impl Clone for PreAuthResponse
Source§fn clone(&self) -> PreAuthResponse
fn clone(&self) -> PreAuthResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreAuthResponse
impl Debug for PreAuthResponse
Source§impl Default for PreAuthResponse
impl Default for PreAuthResponse
Source§fn default() -> PreAuthResponse
fn default() -> PreAuthResponse
Returns the “default value” for a type. Read more
impl Eq for PreAuthResponse
Source§impl PartialEq for PreAuthResponse
impl PartialEq for PreAuthResponse
impl StructuralPartialEq for PreAuthResponse
Auto Trait Implementations§
impl Freeze for PreAuthResponse
impl RefUnwindSafe for PreAuthResponse
impl Send for PreAuthResponse
impl Sync for PreAuthResponse
impl Unpin for PreAuthResponse
impl UnsafeUnpin for PreAuthResponse
impl UnwindSafe for PreAuthResponse
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