pub struct RecipientType {
pub list_id: Option<String>,
pub list_is_active: Option<bool>,
pub list_name: Option<String>,
pub segment_text: Option<String>,
pub recipient_count: Option<u64>,
pub segment_opts: Option<SegmentOptionsType>,
pub store_id: Option<String>,
}
Expand description
Recipient Type
Fields§
§list_id: Option<String>
The unique list id.
list_is_active: Option<bool>
Desc: The status of the list used, namely if it’s deleted or disabled.
list_name: Option<String>
Desc: List Name.
segment_text: Option<String>
Desc: A description of the segment used for the campaign. Formatted as a string marked up with HTML.
recipient_count: Option<u64>
Desc: Count of the recipients on the associated list. Formatted as an integer..
segment_opts: Option<SegmentOptionsType>
Desc: An object representing all segmentation options.
store_id: Option<String>
Desc: The id of the store.
Implementations§
Trait Implementations§
Source§impl Clone for RecipientType
impl Clone for RecipientType
Source§fn clone(&self) -> RecipientType
fn clone(&self) -> RecipientType
Returns a copy 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 RecipientType
impl Debug for RecipientType
Source§impl Default for RecipientType
impl Default for RecipientType
Source§impl<'de> Deserialize<'de> for RecipientType
impl<'de> Deserialize<'de> for RecipientType
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 RecipientType
impl RefUnwindSafe for RecipientType
impl Send for RecipientType
impl Sync for RecipientType
impl Unpin for RecipientType
impl UnwindSafe for RecipientType
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