Interface iCalculatePointsSuccessResponse

interface iCalculatePointsSuccessResponse {
    pagination: {
        bookmark: string;
        hasMore: boolean;
    };
    values: iPointsValue[];
}

Implemented by

Properties

Properties

pagination: {
    bookmark: string;
    hasMore: boolean;
}
values: iPointsValue[]