/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * {} */ export interface WorkflowDeploymentsListRequest { /** * has_story_config */ hasStoryConfig?: string | null; /** * is_public */ isPublic?: string | null; /** * Number of results to return per page. */ limit?: number | null; /** * The initial index from which to return the results. */ offset?: number | null; /** * Specifies the ordering of the returned Workflow Deployments. Valid values are: * - `created` - Orders by creation time in ascending order. * - `-created` - Orders by creation time in descending order. (default) * - `name` - Orders by name in ascending order. * - `-name` - Orders by name in descending order. * * Compound orderings are supported by separating fields with commas, e.g., `-created,name`. */ ordering?: string | null; /** * owned_by */ ownedBy?: string | null; /** * status */ status?: Vellum.WorkflowDeploymentsListRequestStatus | null; }