kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
89 lines • 2.32 kB
JavaScript
;
// Code generated by Kucoin Universal SDK Generator; DO NOT EDIT.
Object.defineProperty(exports, "__esModule", { value: true });
exports.PurchaseReqBuilder = exports.PurchaseReq = void 0;
const class_transformer_1 = require("class-transformer");
class PurchaseReq {
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
constructor() {
// @ts-ignore
this.currency = null;
// @ts-ignore
this.size = null;
// @ts-ignore
this.interestRate = null;
}
/**
* Creates a new instance of the `PurchaseReq` class.
* The builder pattern allows step-by-step construction of a `PurchaseReq` object.
*/
static builder() {
return new PurchaseReqBuilder(new PurchaseReq());
}
/**
* Creates a new instance of the `PurchaseReq` class with the given data.
*/
static create(data) {
let obj = new PurchaseReq();
obj.currency = data.currency;
obj.size = data.size;
obj.interestRate = data.interestRate;
return obj;
}
/**
* Convert the object to a JSON string.
*/
toJson() {
return JSON.stringify((0, class_transformer_1.instanceToPlain)(this));
}
/**
* Create an object from a JSON string.
*/
static fromJson(input) {
return this.fromObject(JSON.parse(input));
}
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject) {
return (0, class_transformer_1.plainToClassFromExist)(new PurchaseReq(), jsonObject);
}
}
exports.PurchaseReq = PurchaseReq;
class PurchaseReqBuilder {
constructor(obj) {
this.obj = obj;
this.obj = obj;
}
/**
* Currency
*/
setCurrency(value) {
this.obj.currency = value;
return this;
}
/**
* Purchase amount
*/
setSize(value) {
this.obj.size = value;
return this;
}
/**
* Purchase interest rate
*/
setInterestRate(value) {
this.obj.interestRate = value;
return this;
}
/**
* Get the final object.
*/
build() {
return this.obj;
}
}
exports.PurchaseReqBuilder = PurchaseReqBuilder;
//# sourceMappingURL=model_purchase_req.js.map