Struct fakturoid::models::Account[][src]

pub struct Account {
    pub subdomain: String,
    pub plan: String,
    pub plan_price: i32,
    pub email: String,
    pub invoice_email: Option<String>,
    pub phone: Option<String>,
    pub web: Option<String>,
    pub name: String,
    pub full_name: Option<String>,
    pub registration_no: Option<String>,
    pub vat_no: Option<String>,
    pub vat_mode: VatMode,
    pub vat_price_mode: VatPriceMode,
    pub street: String,
    pub street2: Option<String>,
    pub city: String,
    pub zip: String,
    pub country: String,
    pub bank_account: String,
    pub iban: Option<String>,
    pub swift_bic: Option<String>,
    pub currency: String,
    pub unit_name: Option<String>,
    pub vat_rate: i32,
    pub displayed_note: Option<String>,
    pub invoice_note: Option<String>,
    pub due: i32,
    pub custom_email_text: String,
    pub overdue_email_text: String,
    pub invoice_paypal: bool,
    pub invoice_gopay: bool,
    pub html_url: String,
    pub url: String,
    pub created_at: DateTime<Local>,
    pub updated_at: DateTime<Local>,
}

Fields

subdomain: Stringplan: Stringplan_price: i32email: Stringinvoice_email: Option<String>phone: Option<String>web: Option<String>name: Stringfull_name: Option<String>registration_no: Option<String>vat_no: Option<String>vat_mode: VatModevat_price_mode: VatPriceModestreet: Stringstreet2: Option<String>city: Stringzip: Stringcountry: Stringbank_account: Stringiban: Option<String>swift_bic: Option<String>currency: Stringunit_name: Option<String>vat_rate: i32displayed_note: Option<String>invoice_note: Option<String>due: i32custom_email_text: Stringoverdue_email_text: Stringinvoice_paypal: boolinvoice_gopay: boolhtml_url: Stringurl: Stringcreated_at: DateTime<Local>updated_at: DateTime<Local>

Trait Implementations

impl Debug for Account[src]

impl<'de> Deserialize<'de> for Account[src]

impl Entity for Account[src]

Auto Trait Implementations

impl RefUnwindSafe for Account

impl Send for Account

impl Sync for Account

impl Unpin for Account

impl UnwindSafe for Account

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.