ix-entities
Version:
IX entities in typescript format. This includes: - Customer
12 lines (11 loc) • 364 B
TypeScript
import { BaseResponse, CustomerTuple } from ".";
/**
* Interface defining the property object that describes the customer create response.
*
* @see [CustomerCreateResponse](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @BoomtownApi
*/
export interface CustomerCreateResponse extends BaseResponse {
results?: CustomerTuple;
}