/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { scheduleEntriesList } from "../funcs/scheduleEntriesList.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class ScheduleEntries extends ClientSDK { /** * ListScheduleEntries Schedules V2 * * @remarks * Get a list of schedule entries. The endpoint will return all entries that overlap with the given window, if one is provided. */ async list( request: operations.SchedulesV2NumberListScheduleEntriesRequest, options?: RequestOptions, ): Promise { return unwrapAsync(scheduleEntriesList( this, request, options, )); } }