pub struct StoreOrderNotificationDto {
pub enabled: Option<bool>,
pub subject: Option<String>,
pub email_template_id: Option<String>,
pub default_email_template_id: Option<String>,
}Available on crate feature
store only.Expand description
StoreOrderNotificationDto from the GoHighLevel OpenAPI spec.
Fields§
§enabled: Option<bool>Store order notification enabled Required by the API. (Optional here so responses that omit it still parse.)
subject: Option<String>Store order email subject Required by the API. (Optional here so responses that omit it still parse.)
email_template_id: Option<String>Email Template Id Required by the API. (Optional here so responses that omit it still parse.)
default_email_template_id: Option<String>Default Email Template Id Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for StoreOrderNotificationDto
impl Clone for StoreOrderNotificationDto
Source§fn clone(&self) -> StoreOrderNotificationDto
fn clone(&self) -> StoreOrderNotificationDto
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 StoreOrderNotificationDto
impl Debug for StoreOrderNotificationDto
Source§impl Default for StoreOrderNotificationDto
impl Default for StoreOrderNotificationDto
Source§fn default() -> StoreOrderNotificationDto
fn default() -> StoreOrderNotificationDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreOrderNotificationDto
impl<'de> Deserialize<'de> for StoreOrderNotificationDto
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 StoreOrderNotificationDto
impl RefUnwindSafe for StoreOrderNotificationDto
impl Send for StoreOrderNotificationDto
impl Sync for StoreOrderNotificationDto
impl Unpin for StoreOrderNotificationDto
impl UnsafeUnpin for StoreOrderNotificationDto
impl UnwindSafe for StoreOrderNotificationDto
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