pub struct Client {
pub address: Option<String>,
pub created_at: Option<String>,
pub name: Option<String>,
pub statement_key: Option<String>,
pub updated_at: Option<String>,
pub is_active: Option<bool>,
pub currency: Option<String>,
pub id: Option<i64>,
}Fields§
§address: Option<String>The physical address for the client.
created_at: Option<String>Date and time the client was created.
name: Option<String>A textual description of the client.
statement_key: Option<String>Used to build a URL to your client’s invoice dashboard:https://{ACCOUNT_SUBDOMAIN}.harvestapp.com/client/statements/{STATEMENT_KEY}
updated_at: Option<String>Date and time the client was last updated.
is_active: Option<bool>Whether the client is active or archived.
currency: Option<String>The currency code associated with this client.
id: Option<i64>Unique ID for the client.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Client
impl<'de> Deserialize<'de> for Client
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
Auto Trait Implementations§
impl Freeze for Client
impl RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnwindSafe for Client
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