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;
|
|
|
|
|
}
|