Initial project import
This commit is contained in:
31
node_modules/stripe/esm/resources/Radar/ValueListItems.js
generated
vendored
Normal file
31
node_modules/stripe/esm/resources/Radar/ValueListItems.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user