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[];
}
