pub struct CreateOfflineUserListJobDTO {
pub location_id: String,
pub smart_list_ids: Vec<String>,
pub csv_path: Option<String>,
pub user_list_id: Option<String>,
pub is_dynamic: Option<bool>,
}Available on crate feature
ad-manager only.Expand description
CreateOfflineUserListJobDTO from the GoHighLevel OpenAPI spec.
Fields§
§location_id: StringLocation identifier Required by the API.
smart_list_ids: Vec<String>Smart list IDs
csv_path: Option<String>CSV file path
user_list_id: Option<String>User list identifier
is_dynamic: Option<bool>Dynamic list flag
Trait Implementations§
Source§impl Clone for CreateOfflineUserListJobDTO
impl Clone for CreateOfflineUserListJobDTO
Source§fn clone(&self) -> CreateOfflineUserListJobDTO
fn clone(&self) -> CreateOfflineUserListJobDTO
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 CreateOfflineUserListJobDTO
impl Debug for CreateOfflineUserListJobDTO
Source§impl Default for CreateOfflineUserListJobDTO
impl Default for CreateOfflineUserListJobDTO
Source§fn default() -> CreateOfflineUserListJobDTO
fn default() -> CreateOfflineUserListJobDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateOfflineUserListJobDTO
impl<'de> Deserialize<'de> for CreateOfflineUserListJobDTO
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 CreateOfflineUserListJobDTO
impl RefUnwindSafe for CreateOfflineUserListJobDTO
impl Send for CreateOfflineUserListJobDTO
impl Sync for CreateOfflineUserListJobDTO
impl Unpin for CreateOfflineUserListJobDTO
impl UnsafeUnpin for CreateOfflineUserListJobDTO
impl UnwindSafe for CreateOfflineUserListJobDTO
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