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>,
}

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

Función de ayuda para el proceso creación de una automatización

Argumentos: list_id: Id de la lista store_id: Id de la store

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.