// This is Generated Source. import SubscriptionInfo from "../definitions/SubscriptionInfo"; import PathSegment from "../PathSegment"; export default class Renew extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("renew", id, prv, service); } /** *

Since 1.0.26 (Release 8.12)

Renews an existent subscription by ID by posting request with an empty body..

Usage Plan Group

Medium

*/ post(): Promise { return this._send({ body: undefined, ignoreId: true, method: "post", query: undefined, }).then((res) => { return res.json(); }); } /** *

Since 1.0.26 (Release 8.12)

Renews an existent subscription by ID by posting request with an empty body..

Usage Plan Group

Medium

* return {ApiResponse} */ postRaw(): Promise { return this._send({ body: undefined, ignoreId: true, method: "post", query: undefined, }); } }