pub struct TaxExemptionOutput {Show 15 fields
pub id: String,
pub customer_id: String,
pub exemption_type: String,
pub certificate_number: Option<String>,
pub issuing_authority: Option<String>,
pub jurisdiction_ids: Vec<String>,
pub exempt_categories: Vec<String>,
pub effective_from: String,
pub expires_at: Option<String>,
pub verified: bool,
pub verified_at: Option<String>,
pub notes: Option<String>,
pub active: bool,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§customer_id: String§exemption_type: String§certificate_number: Option<String>§jurisdiction_ids: Vec<String>§exempt_categories: Vec<String>§effective_from: String§expires_at: Option<String>§verified: bool§verified_at: Option<String>§notes: Option<String>§active: bool§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for TaxExemptionOutput
impl Clone for TaxExemptionOutput
Source§fn clone(&self) -> TaxExemptionOutput
fn clone(&self) -> TaxExemptionOutput
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<'de> Deserialize<'de> for TaxExemptionOutput
impl<'de> Deserialize<'de> for TaxExemptionOutput
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<TaxExemption> for TaxExemptionOutput
impl From<TaxExemption> for TaxExemptionOutput
Source§fn from(e: TaxExemption) -> Self
fn from(e: TaxExemption) -> Self
Converts to this type from the input type.
Source§impl FromNapiValue for TaxExemptionOutput
impl FromNapiValue for TaxExemptionOutput
Source§unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
Safety Read more
fn from_unknown(value: JsUnknown) -> Result<Self, Error>
Source§impl Serialize for TaxExemptionOutput
impl Serialize for TaxExemptionOutput
Source§impl ToNapiValue for TaxExemptionOutput
impl ToNapiValue for TaxExemptionOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: TaxExemptionOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: TaxExemptionOutput, ) -> Result<napi_value>
Safety Read more
Source§impl TypeName for TaxExemptionOutput
impl TypeName for TaxExemptionOutput
Source§impl ValidateNapiValue for TaxExemptionOutput
impl ValidateNapiValue for TaxExemptionOutput
Source§unsafe fn validate(
env: *mut napi_env__,
napi_val: *mut napi_value__,
) -> Result<*mut napi_value__, Error>
unsafe fn validate( env: *mut napi_env__, napi_val: *mut napi_value__, ) -> Result<*mut napi_value__, Error>
Safety Read more
Auto Trait Implementations§
impl Freeze for TaxExemptionOutput
impl RefUnwindSafe for TaxExemptionOutput
impl Send for TaxExemptionOutput
impl Sync for TaxExemptionOutput
impl Unpin for TaxExemptionOutput
impl UnsafeUnpin for TaxExemptionOutput
impl UnwindSafe for TaxExemptionOutput
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