UNPKG

@arcgis/workflow-manager

Version:

ArcGIS Workflow Manager JavaScript API

16 lines (15 loc) 820 B
export interface EsriWorkflowModelsRestAutomationDetails { automationId: string; automationName: string; automationType: EsriWorkflowModelsRestAutomationDetailsAutomationTypeEnum; createdBy?: string | null; enabled: boolean; details: string; } export declare enum EsriWorkflowModelsRestAutomationDetailsAutomationTypeEnum { Scheduled = "Scheduled", Webhook = "Webhook" } export declare function EsriWorkflowModelsRestAutomationDetailsFromJSON(json: any): EsriWorkflowModelsRestAutomationDetails; export declare function EsriWorkflowModelsRestAutomationDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EsriWorkflowModelsRestAutomationDetails; export declare function EsriWorkflowModelsRestAutomationDetailsToJSON(value?: EsriWorkflowModelsRestAutomationDetails | null): any;