pub struct OrganizationSecretIdInput {
pub secret_id: OrganizationSecretIdInputSecretId,
}Expand description
Request body for targeting a specific organization secret.
JSON schema
{
"title": "OrganizationSecretIdInput",
"description": "Request body for targeting a specific organization
secret.",
"type": "object",
"required": [
"secret_id"
],
"properties": {
"secret_id": {
"description": "The organization secret ID.",
"type": "string",
"minLength": 1
}
},
"x-stainless-model": "organizations.organization_secret_id_input"
}Fields§
§secret_id: OrganizationSecretIdInputSecretIdThe organization secret ID.
Trait Implementations§
Source§impl Clone for OrganizationSecretIdInput
impl Clone for OrganizationSecretIdInput
Source§fn clone(&self) -> OrganizationSecretIdInput
fn clone(&self) -> OrganizationSecretIdInput
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 OrganizationSecretIdInput
impl Debug for OrganizationSecretIdInput
Source§impl<'de> Deserialize<'de> for OrganizationSecretIdInput
impl<'de> Deserialize<'de> for OrganizationSecretIdInput
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 From<&OrganizationSecretIdInput> for OrganizationSecretIdInput
impl From<&OrganizationSecretIdInput> for OrganizationSecretIdInput
Source§fn from(value: &OrganizationSecretIdInput) -> Self
fn from(value: &OrganizationSecretIdInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OrganizationSecretIdInput
impl RefUnwindSafe for OrganizationSecretIdInput
impl Send for OrganizationSecretIdInput
impl Sync for OrganizationSecretIdInput
impl Unpin for OrganizationSecretIdInput
impl UnsafeUnpin for OrganizationSecretIdInput
impl UnwindSafe for OrganizationSecretIdInput
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