pub struct PreviewOrganizationInvoiceRequestBody {
pub organization_id: Option<Uuid>,
pub password_manager: Box<OrganizationPasswordManagerRequestModel>,
pub secrets_manager: Option<Box<SecretsManagerRequestModel>>,
pub tax_information: Box<TaxInformationRequestModel>,
}
Fields§
§organization_id: Option<Uuid>
§password_manager: Box<OrganizationPasswordManagerRequestModel>
§secrets_manager: Option<Box<SecretsManagerRequestModel>>
§tax_information: Box<TaxInformationRequestModel>
Implementations§
Source§impl PreviewOrganizationInvoiceRequestBody
impl PreviewOrganizationInvoiceRequestBody
pub fn new( password_manager: OrganizationPasswordManagerRequestModel, tax_information: TaxInformationRequestModel, ) -> PreviewOrganizationInvoiceRequestBody
Trait Implementations§
Source§impl Clone for PreviewOrganizationInvoiceRequestBody
impl Clone for PreviewOrganizationInvoiceRequestBody
Source§fn clone(&self) -> PreviewOrganizationInvoiceRequestBody
fn clone(&self) -> PreviewOrganizationInvoiceRequestBody
Returns a copy 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 PreviewOrganizationInvoiceRequestBody
impl Default for PreviewOrganizationInvoiceRequestBody
Source§fn default() -> PreviewOrganizationInvoiceRequestBody
fn default() -> PreviewOrganizationInvoiceRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreviewOrganizationInvoiceRequestBody
impl<'de> Deserialize<'de> for PreviewOrganizationInvoiceRequestBody
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 PreviewOrganizationInvoiceRequestBody
impl PartialEq for PreviewOrganizationInvoiceRequestBody
Source§fn eq(&self, other: &PreviewOrganizationInvoiceRequestBody) -> bool
fn eq(&self, other: &PreviewOrganizationInvoiceRequestBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PreviewOrganizationInvoiceRequestBody
Auto Trait Implementations§
impl Freeze for PreviewOrganizationInvoiceRequestBody
impl RefUnwindSafe for PreviewOrganizationInvoiceRequestBody
impl Send for PreviewOrganizationInvoiceRequestBody
impl Sync for PreviewOrganizationInvoiceRequestBody
impl Unpin for PreviewOrganizationInvoiceRequestBody
impl UnwindSafe for PreviewOrganizationInvoiceRequestBody
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