31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
// File generated from our OpenAPI spec
|
|
import { StripeResource } from '../../StripeResource.js';
|
|
export class ValueListItemResource extends StripeResource {
|
|
/**
|
|
* Deletes a ValueListItem object, removing it from its parent value list.
|
|
*/
|
|
del(id, params, options) {
|
|
return this._makeRequest('DELETE', `/v1/radar/value_list_items/${encodeURIComponent(id)}`, params, options);
|
|
}
|
|
/**
|
|
* Retrieves a ValueListItem object.
|
|
*/
|
|
retrieve(id, params, options) {
|
|
return this._makeRequest('GET', `/v1/radar/value_list_items/${encodeURIComponent(id)}`, params, options);
|
|
}
|
|
/**
|
|
* Returns a list of ValueListItem objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.
|
|
*/
|
|
list(params, options) {
|
|
return this._makeRequest('GET', '/v1/radar/value_list_items', params, options, {
|
|
methodType: 'list',
|
|
});
|
|
}
|
|
/**
|
|
* Creates a new ValueListItem object, which is added to the specified parent value list.
|
|
*/
|
|
create(params, options) {
|
|
return this._makeRequest('POST', '/v1/radar/value_list_items', params, options);
|
|
}
|
|
}
|
|
//# sourceMappingURL=ValueListItems.js.map
|