apps/recallassess/recallassess-api/src/api/client/subscription/dto/subscription-invoice-download-response.dto.ts
Properties |
| url |
Type : string
|
Decorators :
@Expose()
|
import { ApiProperty } from "@nestjs/swagger";
import { Exclude, Expose } from "class-transformer";
@Exclude()
export class SubscriptionInvoiceDownloadResponseDto {
@Expose()
@ApiProperty({ description: "Signed URL to download invoice PDF" })
url!: string;
}