/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { customFieldsV2List } from "../funcs/customFieldsV2List.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { unwrapAsync } from "../types/fp.js"; export class CustomFieldsV2 extends ClientSDK { /** * List Custom Fields V2 * * @remarks * List all custom fields for an organisation. */ async list( options?: RequestOptions, ): Promise { return unwrapAsync(customFieldsV2List( this, options, )); } }