@slmdevs/celeraone
Version:
This is a NPM Package to use for all the CeleraOne interactions.
19 lines (18 loc) • 461 B
TypeScript
import ErrorResponse from './InternalErrorResponse';
/**
* The response pbject after an Property has been added to a user in CeleraOne
*
* @interface AddUserPropertyResponse
*/
export default interface AddUserPropertyResponse {
status: string;
data?: {
user_id: string;
store_id: string;
value: string;
tracking_id: string | null;
active: boolean;
name: string;
};
errors?: ErrorResponse[];
}