19 lines
304 B
TypeScript
19 lines
304 B
TypeScript
|
|
export interface IPosInfoRawResponse {
|
||
|
|
name: true;
|
||
|
|
complex: {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
tax_id: string;
|
||
|
|
};
|
||
|
|
businessActivity: {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
};
|
||
|
|
guild: {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IPosInfoResponse extends IPosInfoRawResponse {}
|