ix-entities
Version:
IX entities in typescript format. This includes: - Customer
16 lines (15 loc) • 383 B
TypeScript
/**
* Interface defining the property object that describes the base response.
*
* @see [BaseResponse](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @BoomtownApi
*/
export interface BaseResponse {
success?: boolean;
currentServerTime?: string;
totalCount?: number;
returned?: number;
pages?: number;
message?: string;
}