@apicart/store-sdk
Version:
Apicart SDK for integrating store into any web application
31 lines (21 loc) • 346 B
text/typescript
export default class CartParameter {
private _key: string;
private _value: any;
constructor(key: string, value: any)
{
this._key = key;
this._value = value;
}
public getKey(): string
{
return this._key;
}
public getValue(): any
{
return this._value;
}
public setValue(value: any): void
{
this._value = value;
}
}