pub struct UpdatePublicAgentMetadataDTO {
pub location_id: String,
pub name: Option<String>,
pub description: Option<String>,
pub status: Option<String>,
}Available on crate feature
agent-studio only.Expand description
UpdatePublicAgentMetadataDTO from the GoHighLevel OpenAPI spec.
Fields§
§location_id: StringLocation ID for authorization (cannot be updated) Required by the API.
name: Option<String>Name of the agent
description: Option<String>Description of the agent
status: Option<String>Status of the agent
Allowed values: active, inactive, archived.
Trait Implementations§
Source§impl Clone for UpdatePublicAgentMetadataDTO
impl Clone for UpdatePublicAgentMetadataDTO
Source§fn clone(&self) -> UpdatePublicAgentMetadataDTO
fn clone(&self) -> UpdatePublicAgentMetadataDTO
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 UpdatePublicAgentMetadataDTO
impl Debug for UpdatePublicAgentMetadataDTO
Source§impl Default for UpdatePublicAgentMetadataDTO
impl Default for UpdatePublicAgentMetadataDTO
Source§fn default() -> UpdatePublicAgentMetadataDTO
fn default() -> UpdatePublicAgentMetadataDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatePublicAgentMetadataDTO
impl<'de> Deserialize<'de> for UpdatePublicAgentMetadataDTO
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 UpdatePublicAgentMetadataDTO
impl RefUnwindSafe for UpdatePublicAgentMetadataDTO
impl Send for UpdatePublicAgentMetadataDTO
impl Sync for UpdatePublicAgentMetadataDTO
impl Unpin for UpdatePublicAgentMetadataDTO
impl UnsafeUnpin for UpdatePublicAgentMetadataDTO
impl UnwindSafe for UpdatePublicAgentMetadataDTO
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