@prismatic-io/spectral
Version:
Utility library for building Prismatic connectors and code-native integrations
13 lines (12 loc) • 416 B
TypeScript
/** Contains attributes of the Customer for whom an Instance is being executed. */
export interface CustomerAttributes {
/** The programmatic ID of a customer. */
id: string;
/**
* The external ID you set for a customer. See
* https://prismatic.io/docs/customers/managing-customers/#customer-external-ids
*/
externalId: string;
/** The name of the customer. */
name: string;
}