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

main.java.com.zerobounce.ZBCreditsResponse Maven / Gradle / Ivy

package com.zerobounce;

import com.google.gson.annotations.SerializedName;
import org.jetbrains.annotations.Nullable;

import java.util.Objects;

/**
 * The model class used for the GET /getcredits request.
 */
public class ZBCreditsResponse {

    @SerializedName("Credits")
    @Nullable
    private String credits = null;

    public @Nullable String getCredits() {
        return credits;
    }

    public void setCredits(@Nullable String credits) {
        this.credits = credits;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ZBCreditsResponse that = (ZBCreditsResponse) o;
        return Objects.equals(credits, that.credits);
    }

    @Override
    public int hashCode() {
        return Objects.hash(credits);
    }

    @Override
    public String toString() {
        return "ZBCreditsResponse{" +
                "credits='" + credits + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy