export interface CallAPIActionButton { url?: string; apiService?: string; apiMethod?: string; params?: string[]; query?: { [key: string]: object; }; body?: { [key: string]: object; }; /** * Da usare solo se l\'api appartiene alla ViewAPI */ viewId?: string; }