All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jelastic.api.system.persistence.AccountData Maven / Gradle / Ivy

The newest version!
/*Server class MD5: 76d5575c7f80c5060e51c7fb6a62e5d3*/
package com.jelastic.api.system.persistence;

import com.jelastic.api.core.orm.dao.AbstractEntity;

/**
 * @name Jelastic API Client
 * @version 8.11.2
 * @copyright Jelastic, Inc.
 */
public class AccountData extends AbstractEntity {

    public static final String KEY_DISCOUNT = "discount";

    private Account account;

    private String key;

    private String data;

    private AccountDataType type;

    public Account getAccount() {
        return account;
    }

    public void setAccount(Account account) {
        this.account = account;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getData() {
        return data;
    }

    public void setData(String data) {
        this.data = data;
    }

    public AccountDataType getType() {
        return type;
    }

    public void setType(AccountDataType type) {
        this.type = type;
    }

    @Override
    public String toString() {
        return "AccountData{" + "account=" + account + ", key='" + key + '\'' + ", data='" + data + '\'' + ", type=" + type + '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy