import type * as Extend from "../index"; export interface LegacyListProcessorsResponse { /** Indicates the request was successful */ success: true; /** Optional warning message */ warning?: string | null; /** Array of processors */ processors: Extend.LegacyListProcessorsProcessor[]; /** Token for retrieving the next page of results. Will be null if there are no more results. */ nextPageToken?: string | null; }