pub struct IntegrationTemplateCreateInput {
pub id: Option<String>,
pub integration_id: Option<String>,
pub template_id: Option<String>,
pub foreign_entity_id: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
integration_id: Option<String>The identifier of the integration.
template_id: Option<String>The identifier of the template.
foreign_entity_id: Option<String>The foreign identifier in the other service.
Trait Implementations§
Source§impl Clone for IntegrationTemplateCreateInput
impl Clone for IntegrationTemplateCreateInput
Source§fn clone(&self) -> IntegrationTemplateCreateInput
fn clone(&self) -> IntegrationTemplateCreateInput
Returns a duplicate 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 Default for IntegrationTemplateCreateInput
impl Default for IntegrationTemplateCreateInput
Source§fn default() -> IntegrationTemplateCreateInput
fn default() -> IntegrationTemplateCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationTemplateCreateInput
impl<'de> Deserialize<'de> for IntegrationTemplateCreateInput
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 IntegrationTemplateCreateInput
impl RefUnwindSafe for IntegrationTemplateCreateInput
impl Send for IntegrationTemplateCreateInput
impl Sync for IntegrationTemplateCreateInput
impl Unpin for IntegrationTemplateCreateInput
impl UnwindSafe for IntegrationTemplateCreateInput
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