2026-03-16 17:56:22 +03:30
|
|
|
import ISummary from '@/core/models/summary';
|
|
|
|
|
|
|
|
|
|
export interface IBusinessActivityRawResponse {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2026-04-23 20:59:48 +03:30
|
|
|
economic_code: string;
|
2026-04-27 21:53:11 +03:30
|
|
|
fiscal_code: string;
|
|
|
|
|
partner_token: string;
|
2026-03-16 17:56:22 +03:30
|
|
|
guild: ISummary;
|
2026-04-24 02:23:47 +03:30
|
|
|
created_at: string;
|
|
|
|
|
license_info: LicenseInfo;
|
2026-03-16 17:56:22 +03:30
|
|
|
}
|
|
|
|
|
export interface IBusinessActivityResponse extends IBusinessActivityRawResponse {}
|
|
|
|
|
|
|
|
|
|
export interface IBusinessActivityRequest {
|
2026-04-23 20:59:48 +03:30
|
|
|
economic_code: string;
|
2026-04-27 21:53:11 +03:30
|
|
|
fiscal_code: string;
|
|
|
|
|
partner_token: string;
|
2026-03-16 17:56:22 +03:30
|
|
|
name: string;
|
|
|
|
|
}
|
2026-04-24 02:23:47 +03:30
|
|
|
|
|
|
|
|
interface LicenseInfo {
|
|
|
|
|
id: string;
|
|
|
|
|
starts_at: string;
|
|
|
|
|
expires_at: string;
|
|
|
|
|
accounts_limit: number;
|
2026-04-24 04:27:40 +03:30
|
|
|
allocated_account_count: number;
|
2026-04-24 02:23:47 +03:30
|
|
|
}
|