pub struct BulkWritableCloudNetworkRequest {
pub id: Uuid,
pub extra_config: Option<Option<Value>>,
pub name: String,
pub description: Option<String>,
pub cloud_resource_type: Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>,
pub cloud_account: Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>,
pub parent: Option<Option<Box<ApprovalWorkflowUser>>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
BulkWritableCloudNetworkRequest : Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Fields§
§id: Uuid§extra_config: Option<Option<Value>>§name: String§description: Option<String>§cloud_resource_type: Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>§cloud_account: Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>§parent: Option<Option<Box<ApprovalWorkflowUser>>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl BulkWritableCloudNetworkRequest
impl BulkWritableCloudNetworkRequest
Sourcepub fn new(
id: Uuid,
name: String,
cloud_resource_type: ApprovalWorkflowStageResponseApprovalWorkflowStage,
cloud_account: ApprovalWorkflowStageResponseApprovalWorkflowStage,
) -> BulkWritableCloudNetworkRequest
pub fn new( id: Uuid, name: String, cloud_resource_type: ApprovalWorkflowStageResponseApprovalWorkflowStage, cloud_account: ApprovalWorkflowStageResponseApprovalWorkflowStage, ) -> BulkWritableCloudNetworkRequest
Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Trait Implementations§
Source§impl Clone for BulkWritableCloudNetworkRequest
impl Clone for BulkWritableCloudNetworkRequest
Source§fn clone(&self) -> BulkWritableCloudNetworkRequest
fn clone(&self) -> BulkWritableCloudNetworkRequest
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 BulkWritableCloudNetworkRequest
impl Default for BulkWritableCloudNetworkRequest
Source§fn default() -> BulkWritableCloudNetworkRequest
fn default() -> BulkWritableCloudNetworkRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkWritableCloudNetworkRequest
impl<'de> Deserialize<'de> for BulkWritableCloudNetworkRequest
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
Source§impl PartialEq for BulkWritableCloudNetworkRequest
impl PartialEq for BulkWritableCloudNetworkRequest
Source§fn eq(&self, other: &BulkWritableCloudNetworkRequest) -> bool
fn eq(&self, other: &BulkWritableCloudNetworkRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkWritableCloudNetworkRequest
Auto Trait Implementations§
impl Freeze for BulkWritableCloudNetworkRequest
impl RefUnwindSafe for BulkWritableCloudNetworkRequest
impl Send for BulkWritableCloudNetworkRequest
impl Sync for BulkWritableCloudNetworkRequest
impl Unpin for BulkWritableCloudNetworkRequest
impl UnsafeUnpin for BulkWritableCloudNetworkRequest
impl UnwindSafe for BulkWritableCloudNetworkRequest
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