pub struct AddRateV1BodyCommitRateMinimumConfig {
pub minimum: f64,
}Expand description
Only set for TIERED_PERCENTAGE or PERCENTAGE rate_type. Any commit-specific overrides will not apply if there is a minimum set on the rate/applied override.
JSON schema
{
"description": "Only set for TIERED_PERCENTAGE or PERCENTAGE rate_type.
Any commit-specific overrides will not apply if there is a minimum set
on the rate/applied override.",
"type": "object",
"required": [
"minimum"
],
"properties": {
"minimum": {
"type": "number"
}
},
"x-mint": {
"groups": [
"ff:support-charge-ga"
]
},
"x-stainless-skip": true
}Fields§
§minimum: f64Trait Implementations§
Source§impl Clone for AddRateV1BodyCommitRateMinimumConfig
impl Clone for AddRateV1BodyCommitRateMinimumConfig
Source§fn clone(&self) -> AddRateV1BodyCommitRateMinimumConfig
fn clone(&self) -> AddRateV1BodyCommitRateMinimumConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AddRateV1BodyCommitRateMinimumConfig
impl<'de> Deserialize<'de> for AddRateV1BodyCommitRateMinimumConfig
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
Auto Trait Implementations§
impl Freeze for AddRateV1BodyCommitRateMinimumConfig
impl RefUnwindSafe for AddRateV1BodyCommitRateMinimumConfig
impl Send for AddRateV1BodyCommitRateMinimumConfig
impl Sync for AddRateV1BodyCommitRateMinimumConfig
impl Unpin for AddRateV1BodyCommitRateMinimumConfig
impl UnsafeUnpin for AddRateV1BodyCommitRateMinimumConfig
impl UnwindSafe for AddRateV1BodyCommitRateMinimumConfig
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