pub struct AccountCardPaymentsSettings {
pub decline_on: Option<AccountDeclineChargeOn>,
pub statement_descriptor_prefix: Option<String>,
pub statement_descriptor_prefix_kana: Option<String>,
pub statement_descriptor_prefix_kanji: Option<String>,
}Fields§
§decline_on: Option<AccountDeclineChargeOn>§statement_descriptor_prefix: 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_prefix is useful for maximizing descriptor space for the dynamic portion.
statement_descriptor_prefix_kana: Option<String>The Kana variation of the default text that appears on credit card statements when a charge is made (Japan only).
This field prefixes any dynamic statement_descriptor_suffix_kana specified on the charge.
statement_descriptor_prefix_kana is useful for maximizing descriptor space for the dynamic portion.
statement_descriptor_prefix_kanji: Option<String>The Kanji variation of the default text that appears on credit card statements when a charge is made (Japan only).
This field prefixes any dynamic statement_descriptor_suffix_kanji specified on the charge.
statement_descriptor_prefix_kanji is useful for maximizing descriptor space for the dynamic portion.
Trait Implementations§
Source§impl Clone for AccountCardPaymentsSettings
impl Clone for AccountCardPaymentsSettings
Source§fn clone(&self) -> AccountCardPaymentsSettings
fn clone(&self) -> AccountCardPaymentsSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more