apps/recallassess/recallassess-api/src/api/client/subscription/dto/subscription-confirm-response.dto.ts
Properties |
| checkout_url |
Type : string
|
Decorators :
@Expose()
|
import { ApiProperty } from "@nestjs/swagger";
import { Exclude, Expose } from "class-transformer";
@Exclude()
export class SubscriptionConfirmResponseDto {
@Expose()
@ApiProperty({ description: "Stripe checkout session URL to redirect user for payment" })
checkout_url!: string;
}