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

com.vk.api.sdk.objects.ads.Stats Maven / Gradle / Ivy

Go to download

Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.

The newest version!
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.objects.ads;

import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.objects.Validable;
import java.util.List;
import java.util.Objects;

/**
 * Stats object
 */
public class Stats implements Validable {
    /**
     * Object ID
     */
    @SerializedName("id")
    private Integer id;

    @SerializedName("stats")
    private List stats;

    @SerializedName("type")
    private ObjectType type;

    @SerializedName("views_times")
    private StatsViewsTimes viewsTimes;

    public Integer getId() {
        return id;
    }

    public Stats setId(Integer id) {
        this.id = id;
        return this;
    }

    public List getStats() {
        return stats;
    }

    public Stats setStats(List stats) {
        this.stats = stats;
        return this;
    }

    public ObjectType getType() {
        return type;
    }

    public Stats setType(ObjectType type) {
        this.type = type;
        return this;
    }

    public StatsViewsTimes getViewsTimes() {
        return viewsTimes;
    }

    public Stats setViewsTimes(StatsViewsTimes viewsTimes) {
        this.viewsTimes = viewsTimes;
        return this;
    }

    @Override
    public int hashCode() {
        return Objects.hash(stats, id, type, viewsTimes);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Stats stats = (Stats) o;
        return Objects.equals(stats, stats.stats) &&
                Objects.equals(viewsTimes, stats.viewsTimes) &&
                Objects.equals(id, stats.id) &&
                Objects.equals(type, stats.type);
    }

    @Override
    public String toString() {
        final Gson gson = new Gson();
        return gson.toJson(this);
    }

    public String toPrettyString() {
        final StringBuilder sb = new StringBuilder("Stats{");
        sb.append("stats=").append(stats);
        sb.append(", viewsTimes=").append(viewsTimes);
        sb.append(", id=").append(id);
        sb.append(", type=").append(type);
        sb.append('}');
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy