pub struct CardPaymentsSettingsParams {
pub decline_on: Option<DeclineChargeOnParams>,
pub statement_descriptor_prefix: Option<String>,
pub statement_descriptor_prefix_kana: Option<String>,
pub statement_descriptor_prefix_kanji: Option<String>,
}connect only.Fields§
§decline_on: Option<DeclineChargeOnParams>Automatically declines certain charge types regardless of whether the card issuer accepted or declined the charge.
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 CardPaymentsSettingsParams
impl Clone for CardPaymentsSettingsParams
Source§fn clone(&self) -> CardPaymentsSettingsParams
fn clone(&self) -> CardPaymentsSettingsParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more