apps/recallassess/recallassess-api/src/api/client/subscription/dto/subscription-retry-payment-response.dto.ts
Properties |
| message |
Type : string
|
Decorators :
@Expose()
|
| paid |
Type : boolean
|
Decorators :
@Expose()
|
| stripe_invoice_id |
Type : string | null
|
Decorators :
@Expose()
|
| stripe_invoice_status |
Type : string | null
|
Decorators :
@Expose()
|
| success |
Type : boolean
|
Decorators :
@Expose()
|
import { Expose } from "class-transformer";
export class SubscriptionRetryPaymentResponseDto {
@Expose()
success!: boolean;
@Expose()
message!: string;
@Expose()
stripe_invoice_id!: string | null;
@Expose()
stripe_invoice_status!: string | null;
@Expose()
paid!: boolean;
}