attio-js
Version:
Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.
14 lines • 899 B
TypeScript
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
import { GetV2ListsListEntriesEntryIdAttributesAttributeValuesRequest, GetV2ListsListEntriesEntryIdAttributesAttributeValuesResponse } from "../models/operations/getv2listslistentriesentryidattributesattributevalues.js";
export declare class Values extends ClientSDK {
/**
* List attribute values for a list entry
*
* @remarks
* Gets all values for a given attribute on a list entry. If the attribute is historic, this endpoint has the ability to return all historic values using the `show_historic` query param.
*
* Required scopes: `list_entry:read`, `list_configuration:read`.
*/
list(request: GetV2ListsListEntriesEntryIdAttributesAttributeValuesRequest, options?: RequestOptions): Promise<GetV2ListsListEntriesEntryIdAttributesAttributeValuesResponse>;
}
//# sourceMappingURL=values.d.ts.map