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

com.taboola.backstage.model.Account Maven / Gradle / Ivy

package com.taboola.backstage.model;

import java.util.List;
import java.util.Objects;

/**
 * Created by vladi
 * Date: 10/16/2017
 * Time: 11:21 PM
 * By Taboola
 */
public class Account {

    private Long id;
    private String name;
    private String accountId;
    private AccountType type;
    private List partnerTypes;
    private List campaignTypes;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getAccountId() {
        return accountId;
    }

    public void setAccountId(String accountId) {
        this.accountId = accountId;
    }

    public AccountType getType() { return type; }

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

    public List getPartnerTypes() {
        return partnerTypes;
    }

    public void setPartnerTypes(List partnerTypes) {
        this.partnerTypes = partnerTypes;
    }

    public List getCampaignTypes() {
        return campaignTypes;
    }

    public void setCampaignTypes(List campaignTypes) {
        this.campaignTypes = campaignTypes;
    }

    @Override
    public String toString() {
        return "Account{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", accountId='" + accountId + '\'' +
                ", type=" + type +
                ", partnerTypes=" + partnerTypes +
                ", campaignTypes=" + campaignTypes +
                '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Account account = (Account) o;
        return Objects.equals(id, account.id) &&
                Objects.equals(name, account.name) &&
                Objects.equals(accountId, account.accountId) &&
                type == account.type &&
                Objects.equals(partnerTypes, account.partnerTypes) &&
                Objects.equals(campaignTypes, account.campaignTypes);
    }

    @Override
    public int hashCode() {
        return Objects.hash(id, name, accountId, type, partnerTypes, campaignTypes);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy