import { KittenCloudVariableSetCommand } from "./kitten-cloud-variable-set-command";
export class KittenCloudPrivateVariableSetCommand extends KittenCloudVariableSetCommand {
toCloudJSON() {
return {
cvid: this.variable.cvid,
value: this.value,
param_type: typeof this.value
};
}
}