pub struct SpendingRestrictions {
pub amount: f64,
pub blocked_categories: Vec<f64>,
pub categories: Vec<f64>,
pub interval: Interval,
pub lock_date: Option<DateTime<Utc>>,
pub suspended: bool,
pub transaction_amount_limit: f64,
}Expand description
Specifies the spend restrictions on a Ramp card.
Fields§
§amount: f64The number of results to be returned in each page. The value must be between 2 and 10,000. If not specified, the default will be 1,000.
blocked_categories: Vec<f64>Specifies the spend restrictions on a Ramp card.
categories: Vec<f64>Specifies the spend restrictions on a Ramp card.
interval: IntervalTime interval to apply limit to.
lock_date: Option<DateTime<Utc>>Specifies the spend restrictions on a Ramp card.
suspended: boolSpecifies the spend restrictions on a Ramp card.
transaction_amount_limit: f64Specifies the spend restrictions on a Ramp card.
Trait Implementations§
Source§impl Clone for SpendingRestrictions
impl Clone for SpendingRestrictions
Source§fn clone(&self) -> SpendingRestrictions
fn clone(&self) -> SpendingRestrictions
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 SpendingRestrictions
impl Debug for SpendingRestrictions
Source§impl<'de> Deserialize<'de> for SpendingRestrictions
impl<'de> Deserialize<'de> for SpendingRestrictions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for SpendingRestrictions
impl JsonSchema for SpendingRestrictions
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SpendingRestrictions
impl PartialEq for SpendingRestrictions
Source§impl Serialize for SpendingRestrictions
impl Serialize for SpendingRestrictions
impl StructuralPartialEq for SpendingRestrictions
Auto Trait Implementations§
impl Freeze for SpendingRestrictions
impl RefUnwindSafe for SpendingRestrictions
impl Send for SpendingRestrictions
impl Sync for SpendingRestrictions
impl Unpin for SpendingRestrictions
impl UnwindSafe for SpendingRestrictions
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