interface RedeemProjectionResponse {
    customerId: string;
    estimatedDaysUntilSatisfaction: number;
    estimatedSatisfactionTime: string;
    isAlreadySatisfied: boolean;
    message: string;
    redeemId: number;
}

Properties

customerId: string

Customer ID associated with this redemption

Example

"67890abcdef"
estimatedDaysUntilSatisfaction: number

Estimated number of days until satisfaction

Example

7
estimatedSatisfactionTime: string

Estimated time when the redemption will be satisfied

Example

"2024-02-01T10:30:00Z"
isAlreadySatisfied: boolean

Whether the redemption is already satisfied

Example

true
message: string

Human-readable message about the projection

Example

"The redemption is expected to be satisfied in approximately 7 days"
redeemId: number

The redeem request ID

Example

1234

Generated using TypeDoc