ExecuteServiceConfig
Definition
export interface ExecuteServiceConfig extends ExecuteConfigBase {
/** Execution type discriminator */
type: 'service';
/** Application name (e.g., 'System', 'UXP', 'Location') */
app: string;
/** Service name (e.g., 'Portal:All', 'AccountNavigation:GetAll') */
service: string;
/** Service parameters */
parameters?: any;
/** Execution options (caching, batching, etc.) */
options?: ExecutionOptions;
}Usage
import { ExecuteServiceConfig } from 'uxp/components';Related Types
Last updated