pub struct PatchedBulkWritableSoftwareVersionRequest {Show 13 fields
pub id: Uuid,
pub version: Option<String>,
pub alias: Option<String>,
pub release_date: Option<Option<String>>,
pub end_of_support_date: Option<Option<String>>,
pub documentation_url: Option<String>,
pub long_term_support: Option<bool>,
pub pre_release: Option<bool>,
pub platform: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
pub status: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
PatchedBulkWritableSoftwareVersionRequest : 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§version: Option<String>§alias: Option<String>Optional alternative label for this version
release_date: Option<Option<String>>§end_of_support_date: Option<Option<String>>§documentation_url: Option<String>§long_term_support: Option<bool>Is a Long Term Support version
pre_release: Option<bool>Is a Pre-Release version
platform: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>§status: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl PatchedBulkWritableSoftwareVersionRequest
impl PatchedBulkWritableSoftwareVersionRequest
Sourcepub fn new(id: Uuid) -> PatchedBulkWritableSoftwareVersionRequest
pub fn new(id: Uuid) -> PatchedBulkWritableSoftwareVersionRequest
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 PatchedBulkWritableSoftwareVersionRequest
impl Clone for PatchedBulkWritableSoftwareVersionRequest
Source§fn clone(&self) -> PatchedBulkWritableSoftwareVersionRequest
fn clone(&self) -> PatchedBulkWritableSoftwareVersionRequest
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 PatchedBulkWritableSoftwareVersionRequest
impl Default for PatchedBulkWritableSoftwareVersionRequest
Source§fn default() -> PatchedBulkWritableSoftwareVersionRequest
fn default() -> PatchedBulkWritableSoftwareVersionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkWritableSoftwareVersionRequest
impl<'de> Deserialize<'de> for PatchedBulkWritableSoftwareVersionRequest
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 PatchedBulkWritableSoftwareVersionRequest
impl PartialEq for PatchedBulkWritableSoftwareVersionRequest
Source§fn eq(&self, other: &PatchedBulkWritableSoftwareVersionRequest) -> bool
fn eq(&self, other: &PatchedBulkWritableSoftwareVersionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchedBulkWritableSoftwareVersionRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkWritableSoftwareVersionRequest
impl RefUnwindSafe for PatchedBulkWritableSoftwareVersionRequest
impl Send for PatchedBulkWritableSoftwareVersionRequest
impl Sync for PatchedBulkWritableSoftwareVersionRequest
impl Unpin for PatchedBulkWritableSoftwareVersionRequest
impl UnsafeUnpin for PatchedBulkWritableSoftwareVersionRequest
impl UnwindSafe for PatchedBulkWritableSoftwareVersionRequest
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