pub struct AccountPaymentsSettings {
pub statement_descriptor: Option<String>,
pub statement_descriptor_kana: Option<String>,
pub statement_descriptor_kanji: Option<String>,
pub statement_descriptor_prefix_kana: Option<String>,
pub statement_descriptor_prefix_kanji: Option<String>,
}
Fields§
§statement_descriptor: Option<String>
The default text that appears on credit card statements when a charge is made.
This field prefixes any dynamic statement_descriptor
specified on the charge.
statement_descriptor_kana: Option<String>
The Kana variation of statement_descriptor
used for charges in Japan.
Japanese statement descriptors have special requirements.
statement_descriptor_kanji: Option<String>
The Kanji variation of statement_descriptor
used for charges in Japan.
Japanese statement descriptors have special requirements.
statement_descriptor_prefix_kana: Option<String>
The Kana variation of statement_descriptor_prefix
used for card charges in Japan.
Japanese statement descriptors have special requirements.
statement_descriptor_prefix_kanji: Option<String>
The Kanji variation of statement_descriptor_prefix
used for card charges in Japan.
Japanese statement descriptors have special requirements.
Trait Implementations§
Source§impl Clone for AccountPaymentsSettings
impl Clone for AccountPaymentsSettings
Source§fn clone(&self) -> AccountPaymentsSettings
fn clone(&self) -> AccountPaymentsSettings
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 moreSource§impl Debug for AccountPaymentsSettings
impl Debug for AccountPaymentsSettings
Auto Trait Implementations§
impl Freeze for AccountPaymentsSettings
impl RefUnwindSafe for AccountPaymentsSettings
impl Send for AccountPaymentsSettings
impl Sync for AccountPaymentsSettings
impl Unpin for AccountPaymentsSettings
impl UnwindSafe for AccountPaymentsSettings
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