box-node-sdk
Version:
Official SDK for Box Platform APIs
19 lines • 984 B
TypeScript
import { AutomateWorkflowActionV2026R0 } from './automateWorkflowActionV2026R0.js';
import { SerializedData } from '../../serialization/json.js';
export interface AutomateWorkflowsV2026R0 {
/**
* Workflow actions available for manual start. */
readonly entries?: readonly AutomateWorkflowActionV2026R0[];
/**
* The limit that was used for these entries. This will be the same as the
* `limit` query parameter unless that value exceeded the maximum value
* allowed. The maximum value varies by API. */
readonly limit?: number;
/**
* The marker for the start of the next page of results. */
readonly nextMarker?: string | null;
readonly rawData?: SerializedData;
}
export declare function serializeAutomateWorkflowsV2026R0(val: AutomateWorkflowsV2026R0): SerializedData;
export declare function deserializeAutomateWorkflowsV2026R0(val: SerializedData): AutomateWorkflowsV2026R0;
//# sourceMappingURL=automateWorkflowsV2026R0.d.ts.map