pub struct PaymentLinksResourceCustomFieldsDropdown {
pub default_value: Option<String>,
pub options: Vec<PaymentLinksResourceCustomFieldsDropdownOption>,
}
Fields§
§default_value: Option<String>
The value that will pre-fill on the payment page.
options: Vec<PaymentLinksResourceCustomFieldsDropdownOption>
The options available for the customer to select. Up to 200 options allowed.
Trait Implementations§
Source§impl Clone for PaymentLinksResourceCustomFieldsDropdown
impl Clone for PaymentLinksResourceCustomFieldsDropdown
Source§fn clone(&self) -> PaymentLinksResourceCustomFieldsDropdown
fn clone(&self) -> PaymentLinksResourceCustomFieldsDropdown
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 FromValueOpt for PaymentLinksResourceCustomFieldsDropdown
impl FromValueOpt for PaymentLinksResourceCustomFieldsDropdown
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentLinksResourceCustomFieldsDropdown
impl RefUnwindSafe for PaymentLinksResourceCustomFieldsDropdown
impl Send for PaymentLinksResourceCustomFieldsDropdown
impl Sync for PaymentLinksResourceCustomFieldsDropdown
impl Unpin for PaymentLinksResourceCustomFieldsDropdown
impl UnwindSafe for PaymentLinksResourceCustomFieldsDropdown
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