Files
psp_panel/src/app/domains/superAdmin/modules/partners/models/io.d.ts
T

23 lines
502 B
TypeScript
Raw Normal View History

2026-03-10 13:36:45 +03:30
export interface IPartnerRawResponse {
id: string;
name: string;
code: string;
2026-03-14 16:26:22 +03:30
remained_license: number;
license_quota: number;
2026-03-10 13:36:45 +03:30
}
export interface IPartnerResponse extends IPartnerRawResponse {}
export interface IPartnerRequest {
name: string;
code: string;
2026-03-14 16:26:22 +03:30
license_quota: number;
2026-03-10 13:36:45 +03:30
}
2026-04-06 18:33:17 +03:30
//charge license
export interface ILicenseChargeRawResponse {}
export interface ILicenseChargeResponse extends ILicenseChargeRawResponse {}
export interface ILicenseChargeRequest {
count: number;
}