apps/recallassess/recallassess-api/src/api/client/subscription/dto/subscription-stripe-billing-create-response.dto.ts
Properties |
| message |
Type : string
|
Decorators :
@Expose()
|
| next_period_end_iso |
Type : string | null
|
Decorators :
@Expose()
|
|
ISO 8601 end of current Stripe billing period (UTC), when available |
| success |
Type : boolean
|
Decorators :
@Expose()
|
import { Exclude, Expose } from "class-transformer";
@Exclude()
export class SubscriptionStripeBillingCreateResponseDto {
@Expose()
success!: boolean;
@Expose()
message!: string;
/** ISO 8601 end of current Stripe billing period (UTC), when available */
@Expose()
next_period_end_iso!: string | null;
}