pub struct RegionalTaxRateInfo {
pub eligible_for_streaming_service_tax_rate: Option<bool>,
pub streaming_tax_type: Option<String>,
pub tax_tier: Option<String>,
}Expand description
Specified details about taxation in a given geographical region.
This type is not used in any activity, and only used as part of another schema.
Fields§
§eligible_for_streaming_service_tax_rate: Option<bool>You must tell us if your app contains streaming products to correctly charge US state and local sales tax. Field only supported in the United States.
streaming_tax_type: Option<String>To collect communications or amusement taxes in the United States, choose the appropriate tax category. Learn more.
tax_tier: Option<String>Tax tier to specify reduced tax rate. Developers who sell digital news, magazines, newspapers, books, or audiobooks in various regions may be eligible for reduced tax rates. Learn more.
Trait Implementations§
Source§impl Clone for RegionalTaxRateInfo
impl Clone for RegionalTaxRateInfo
Source§fn clone(&self) -> RegionalTaxRateInfo
fn clone(&self) -> RegionalTaxRateInfo
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 Debug for RegionalTaxRateInfo
impl Debug for RegionalTaxRateInfo
Source§impl Default for RegionalTaxRateInfo
impl Default for RegionalTaxRateInfo
Source§fn default() -> RegionalTaxRateInfo
fn default() -> RegionalTaxRateInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegionalTaxRateInfo
impl<'de> Deserialize<'de> for RegionalTaxRateInfo
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 Serialize for RegionalTaxRateInfo
impl Serialize for RegionalTaxRateInfo
impl Part for RegionalTaxRateInfo
Auto Trait Implementations§
impl Freeze for RegionalTaxRateInfo
impl RefUnwindSafe for RegionalTaxRateInfo
impl Send for RegionalTaxRateInfo
impl Sync for RegionalTaxRateInfo
impl Unpin for RegionalTaxRateInfo
impl UnwindSafe for RegionalTaxRateInfo
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