pub struct ConversionValueSettings {
pub default_value: f64,
pub default_currency_code: String,
pub always_use_default_value: bool,
}Available on crate feature
ad-manager only.Expand description
ConversionValueSettings from the GoHighLevel OpenAPI spec.
Fields§
§default_value: f64Default monetary value assigned to each conversion Required by the API.
default_currency_code: StringISO 4217 currency code for the default value Required by the API.
always_use_default_value: boolWhen true, always uses the default value even if a transaction-specific value is provided Required by the API.
Trait Implementations§
Source§impl Clone for ConversionValueSettings
impl Clone for ConversionValueSettings
Source§fn clone(&self) -> ConversionValueSettings
fn clone(&self) -> ConversionValueSettings
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 Debug for ConversionValueSettings
impl Debug for ConversionValueSettings
Source§impl Default for ConversionValueSettings
impl Default for ConversionValueSettings
Source§fn default() -> ConversionValueSettings
fn default() -> ConversionValueSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConversionValueSettings
impl<'de> Deserialize<'de> for ConversionValueSettings
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 ConversionValueSettings
impl RefUnwindSafe for ConversionValueSettings
impl Send for ConversionValueSettings
impl Sync for ConversionValueSettings
impl Unpin for ConversionValueSettings
impl UnsafeUnpin for ConversionValueSettings
impl UnwindSafe for ConversionValueSettings
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