pub struct Customer {Show 19 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub logo_url: Option<String>,
pub domains: Option<Vec<String>>,
pub external_ids: Option<Vec<String>>,
pub slack_channel_id: Option<String>,
pub owner: Option<Box<User>>,
pub status: Option<Box<CustomerStatus>>,
pub revenue: Option<i64>,
pub size: Option<f64>,
pub tier: Option<Box<CustomerTier>>,
pub approximate_need_count: Option<f64>,
pub slug_id: Option<String>,
pub main_source_id: Option<String>,
pub integration: Option<Box<Integration>>,
pub url: Option<String>,
}Expand description
A customer whose needs will be tied to issues or projects.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
name: Option<String>The customer’s name.
logo_url: Option<String>The customer’s logo URL.
domains: Option<Vec<String>>The domains associated with this customer.
external_ids: Option<Vec<String>>The ids of the customers in external systems.
slack_channel_id: Option<String>The ID of the Slack channel used to interact with the customer.
owner: Option<Box<User>>The user who owns the customer.
status: Option<Box<CustomerStatus>>The current status of the customer.
revenue: Option<i64>The annual revenue generated by the customer.
size: Option<f64>The size of the customer.
tier: Option<Box<CustomerTier>>The tier of the customer.
approximate_need_count: Option<f64>The approximate number of needs of the customer.
slug_id: Option<String>The customer’s unique URL slug.
main_source_id: Option<String>The ID of the main source, when a customer has multiple sources. Must be one of externalIds.
integration: Option<Box<Integration>>The integration that manages the Customer.
url: Option<String>URL of the customer in Linear.