pub struct ProviderResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub name: Option<String>,
pub business_name: Option<String>,
pub business_address1: Option<String>,
pub business_address2: Option<String>,
pub business_address3: Option<String>,
pub business_country: Option<String>,
pub business_tax_number: Option<String>,
pub billing_email: Option<String>,
pub creation_date: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§name: Option<String>
§business_name: Option<String>
§business_address1: Option<String>
§business_address2: Option<String>
§business_address3: Option<String>
§business_country: Option<String>
§business_tax_number: Option<String>
§billing_email: Option<String>
§creation_date: Option<String>
Implementations§
source§impl ProviderResponseModel
impl ProviderResponseModel
pub fn new() -> ProviderResponseModel
Trait Implementations§
source§impl Clone for ProviderResponseModel
impl Clone for ProviderResponseModel
source§fn clone(&self) -> ProviderResponseModel
fn clone(&self) -> ProviderResponseModel
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 Debug for ProviderResponseModel
impl Debug for ProviderResponseModel
source§impl<'de> Deserialize<'de> for ProviderResponseModel
impl<'de> Deserialize<'de> for ProviderResponseModel
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 ProviderResponseModel
impl PartialEq for ProviderResponseModel
source§fn eq(&self, other: &ProviderResponseModel) -> bool
fn eq(&self, other: &ProviderResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProviderResponseModel
impl Serialize for ProviderResponseModel
impl StructuralPartialEq for ProviderResponseModel
Auto Trait Implementations§
impl Freeze for ProviderResponseModel
impl RefUnwindSafe for ProviderResponseModel
impl Send for ProviderResponseModel
impl Sync for ProviderResponseModel
impl Unpin for ProviderResponseModel
impl UnwindSafe for ProviderResponseModel
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