/** * @example * {} */ export interface ListBrandsParams { pageIndex?: number; pageSize?: number; status?: ListBrandsParams.Status; isArchived?: boolean; /** Case-insensitive substring search on brand name. */ name?: string; } export declare namespace ListBrandsParams { const Status: { readonly Pending: "PENDING"; readonly Unverified: "UNVERIFIED"; readonly Verified: "VERIFIED"; readonly Vetted: "VETTED"; readonly Failed: "FAILED"; readonly Incomplete: "INCOMPLETE"; }; type Status = (typeof Status)[keyof typeof Status]; }