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

com.cashfree.pg.model.CFCustomerDetails Maven / Gradle / Ivy

There is a newer version: 2.1.7
Show newest version
/*
 * New Payment Gateway APIs
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 2022-01-01
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package com.cashfree.pg.model;


import com.cashfree.pg.JSON;
import com.google.gson.Gson;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.annotations.SerializedName;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashSet;
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Set;

/** CFCustomerDetails */
@javax.annotation.Generated(
        value = "org.openapitools.codegen.languages.JavaClientCodegen",
        date = "2023-03-16T14:01:52.135917+05:30[Asia/Kolkata]")
public class CFCustomerDetails {
    public static final String SERIALIZED_NAME_CUSTOMER_ID = "customer_id";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_ID)
    private String customerId;

    public static final String SERIALIZED_NAME_CUSTOMER_NAME = "customer_name";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_NAME)
    private String customerName;

    public static final String SERIALIZED_NAME_CUSTOMER_EMAIL = "customer_email";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_EMAIL)
    private String customerEmail;

    public static final String SERIALIZED_NAME_CUSTOMER_PHONE = "customer_phone";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_PHONE)
    private String customerPhone;

    public static final String SERIALIZED_NAME_CUSTOMER_BANK_ACCOUNT_NUMBER =
            "customer_bank_account_number";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_BANK_ACCOUNT_NUMBER)
    private String customerBankAccountNumber;

    public static final String SERIALIZED_NAME_CUSTOMER_BANK_IFSC = "customer_bank_ifsc";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_BANK_IFSC)
    private String customerBankIfsc;

    public static final String SERIALIZED_NAME_CUSTOMER_BANK_CODE = "customer_bank_code";

    @SerializedName(SERIALIZED_NAME_CUSTOMER_BANK_CODE)
    private Integer customerBankCode;

    public CFCustomerDetails() {}

    public CFCustomerDetails customerId(String customerId) {

        this.customerId = customerId;
        return this;
    }

    /**
     * A unique identifier for the customer. Use alphanumeric values only.
     *
     * @return customerId
     */
    @javax.annotation.Nonnull
    public String getCustomerId() {
        return customerId;
    }

    public void setCustomerId(String customerId) {
        this.customerId = customerId;
    }

    public CFCustomerDetails customerName(String customerName) {

        this.customerName = customerName;
        return this;
    }

    /**
     * Customer name.
     *
     * @return customerName
     */
    @javax.annotation.Nullable
    public String getCustomerName() {
        return customerName;
    }

    public void setCustomerName(String customerName) {
        this.customerName = customerName;
    }

    public CFCustomerDetails customerEmail(String customerEmail) {

        this.customerEmail = customerEmail;
        return this;
    }

    /**
     * Customer email address.
     *
     * @return customerEmail
     */
    @javax.annotation.Nullable
    public String getCustomerEmail() {
        return customerEmail;
    }

    public void setCustomerEmail(String customerEmail) {
        this.customerEmail = customerEmail;
    }

    public CFCustomerDetails customerPhone(String customerPhone) {

        this.customerPhone = customerPhone;
        return this;
    }

    /**
     * Customer phone number.
     *
     * @return customerPhone
     */
    @javax.annotation.Nonnull
    public String getCustomerPhone() {
        return customerPhone;
    }

    public void setCustomerPhone(String customerPhone) {
        this.customerPhone = customerPhone;
    }

    public CFCustomerDetails customerBankAccountNumber(String customerBankAccountNumber) {

        this.customerBankAccountNumber = customerBankAccountNumber;
        return this;
    }

    /**
     * Customer bank account. Required if you want to do a bank account check (TPV)
     *
     * @return customerBankAccountNumber
     */
    @javax.annotation.Nullable
    public String getCustomerBankAccountNumber() {
        return customerBankAccountNumber;
    }

    public void setCustomerBankAccountNumber(String customerBankAccountNumber) {
        this.customerBankAccountNumber = customerBankAccountNumber;
    }

    public CFCustomerDetails customerBankIfsc(String customerBankIfsc) {

        this.customerBankIfsc = customerBankIfsc;
        return this;
    }

    /**
     * Customer bank IFSC. Required if you want to do a bank account check (TPV)
     *
     * @return customerBankIfsc
     */
    @javax.annotation.Nullable
    public String getCustomerBankIfsc() {
        return customerBankIfsc;
    }

    public void setCustomerBankIfsc(String customerBankIfsc) {
        this.customerBankIfsc = customerBankIfsc;
    }

    public CFCustomerDetails customerBankCode(Integer customerBankCode) {

        this.customerBankCode = customerBankCode;
        return this;
    }

    /**
     * Customer bank code. Required for net banking payments, if you want to do a bank account check
     * (TPV)
     *
     * @return customerBankCode
     */
    @javax.annotation.Nullable
    public Integer getCustomerBankCode() {
        return customerBankCode;
    }

    public void setCustomerBankCode(Integer customerBankCode) {
        this.customerBankCode = customerBankCode;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        CFCustomerDetails cfCustomerDetails = (CFCustomerDetails) o;
        return Objects.equals(this.customerId, cfCustomerDetails.customerId)
                && Objects.equals(this.customerName, cfCustomerDetails.customerName)
                && Objects.equals(this.customerEmail, cfCustomerDetails.customerEmail)
                && Objects.equals(this.customerPhone, cfCustomerDetails.customerPhone)
                && Objects.equals(
                        this.customerBankAccountNumber, cfCustomerDetails.customerBankAccountNumber)
                && Objects.equals(this.customerBankIfsc, cfCustomerDetails.customerBankIfsc)
                && Objects.equals(this.customerBankCode, cfCustomerDetails.customerBankCode);
    }

    @Override
    public int hashCode() {
        return Objects.hash(
                customerId,
                customerName,
                customerEmail,
                customerPhone,
                customerBankAccountNumber,
                customerBankIfsc,
                customerBankCode);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class CFCustomerDetails {\n");
        sb.append("    customerId: ").append(toIndentedString(customerId)).append("\n");
        sb.append("    customerName: ").append(toIndentedString(customerName)).append("\n");
        sb.append("    customerEmail: ").append(toIndentedString(customerEmail)).append("\n");
        sb.append("    customerPhone: ").append(toIndentedString(customerPhone)).append("\n");
        sb.append("    customerBankAccountNumber: ")
                .append(toIndentedString(customerBankAccountNumber))
                .append("\n");
        sb.append("    customerBankIfsc: ").append(toIndentedString(customerBankIfsc)).append("\n");
        sb.append("    customerBankCode: ").append(toIndentedString(customerBankCode)).append("\n");
        sb.append("}");
        return sb.toString();
    }

    /**
     * Convert the given object to string with each line indented by 4 spaces (except the first
     * line).
     */
    private String toIndentedString(Object o) {
        if (o == null) {
            return "null";
        }
        return o.toString().replace("\n", "\n    ");
    }

    public static HashSet openapiFields;
    public static HashSet openapiRequiredFields;

    static {
        // a set of all properties/fields (JSON key names)
        openapiFields = new HashSet();
        openapiFields.add("customer_id");
        openapiFields.add("customer_name");
        openapiFields.add("customer_email");
        openapiFields.add("customer_phone");
        openapiFields.add("customer_bank_account_number");
        openapiFields.add("customer_bank_ifsc");
        openapiFields.add("customer_bank_code");

        // a set of required properties/fields (JSON key names)
        openapiRequiredFields = new HashSet();
        openapiRequiredFields.add("customer_id");
        openapiRequiredFields.add("customer_phone");
    }

    /**
     * Validates the JSON Object and throws an exception if issues found
     *
     * @param jsonObj JSON Object
     * @throws IOException if the JSON Object is invalid with respect to CFCustomerDetails
     */
    public static void validateJsonObject(JsonObject jsonObj) throws IOException {
        if (jsonObj == null) {
            if (!CFCustomerDetails.openapiRequiredFields
                    .isEmpty()) { // has required fields but JSON object is null
                throw new IllegalArgumentException(
                        String.format(
                                "The required field(s) %s in CFCustomerDetails is not found in the"
                                        + " empty JSON string",
                                CFCustomerDetails.openapiRequiredFields.toString()));
            }
        }

        Set> entries = jsonObj.entrySet();
        // check to see if the JSON string contains additional fields
        for (Entry entry : entries) {
            if (!CFCustomerDetails.openapiFields.contains(entry.getKey())) {
                throw new IllegalArgumentException(
                        String.format(
                                "The field `%s` in the JSON string is not defined in the"
                                        + " `CFCustomerDetails` properties. JSON: %s",
                                entry.getKey(), jsonObj.toString()));
            }
        }

        // check to make sure all required properties/fields are present in the JSON string
        for (String requiredField : CFCustomerDetails.openapiRequiredFields) {
            if (jsonObj.get(requiredField) == null) {
                throw new IllegalArgumentException(
                        String.format(
                                "The required field `%s` is not found in the JSON string: %s",
                                requiredField, jsonObj.toString()));
            }
        }
        if (!jsonObj.get("customer_id").isJsonPrimitive()) {
            throw new IllegalArgumentException(
                    String.format(
                            "Expected the field `customer_id` to be a primitive type in the JSON"
                                    + " string but got `%s`",
                            jsonObj.get("customer_id").toString()));
        }
        if ((jsonObj.get("customer_name") != null && !jsonObj.get("customer_name").isJsonNull())
                && !jsonObj.get("customer_name").isJsonPrimitive()) {
            throw new IllegalArgumentException(
                    String.format(
                            "Expected the field `customer_name` to be a primitive type in the JSON"
                                    + " string but got `%s`",
                            jsonObj.get("customer_name").toString()));
        }
        if ((jsonObj.get("customer_email") != null && !jsonObj.get("customer_email").isJsonNull())
                && !jsonObj.get("customer_email").isJsonPrimitive()) {
            throw new IllegalArgumentException(
                    String.format(
                            "Expected the field `customer_email` to be a primitive type in the"
                                    + " JSON string but got `%s`",
                            jsonObj.get("customer_email").toString()));
        }
        if (!jsonObj.get("customer_phone").isJsonPrimitive()) {
            throw new IllegalArgumentException(
                    String.format(
                            "Expected the field `customer_phone` to be a primitive type in the"
                                    + " JSON string but got `%s`",
                            jsonObj.get("customer_phone").toString()));
        }
        if ((jsonObj.get("customer_bank_account_number") != null
                        && !jsonObj.get("customer_bank_account_number").isJsonNull())
                && !jsonObj.get("customer_bank_account_number").isJsonPrimitive()) {
            throw new IllegalArgumentException(
                    String.format(
                            "Expected the field `customer_bank_account_number` to be a primitive"
                                    + " type in the JSON string but got `%s`",
                            jsonObj.get("customer_bank_account_number").toString()));
        }
        if ((jsonObj.get("customer_bank_ifsc") != null
                        && !jsonObj.get("customer_bank_ifsc").isJsonNull())
                && !jsonObj.get("customer_bank_ifsc").isJsonPrimitive()) {
            throw new IllegalArgumentException(
                    String.format(
                            "Expected the field `customer_bank_ifsc` to be a primitive type in the"
                                    + " JSON string but got `%s`",
                            jsonObj.get("customer_bank_ifsc").toString()));
        }
    }

    public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
        @SuppressWarnings("unchecked")
        @Override
        public  TypeAdapter create(Gson gson, TypeToken type) {
            if (!CFCustomerDetails.class.isAssignableFrom(type.getRawType())) {
                return null; // this class only serializes 'CFCustomerDetails' and its subtypes
            }
            final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
            final TypeAdapter thisAdapter =
                    gson.getDelegateAdapter(this, TypeToken.get(CFCustomerDetails.class));

            return (TypeAdapter)
                    new TypeAdapter() {
                        @Override
                        public void write(JsonWriter out, CFCustomerDetails value)
                                throws IOException {
                            JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
                            elementAdapter.write(out, obj);
                        }

                        @Override
                        public CFCustomerDetails read(JsonReader in) throws IOException {
                            JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
                            validateJsonObject(jsonObj);
                            return thisAdapter.fromJsonTree(jsonObj);
                        }
                    }.nullSafe();
        }
    }

    /**
     * Create an instance of CFCustomerDetails given an JSON string
     *
     * @param jsonString JSON string
     * @return An instance of CFCustomerDetails
     * @throws IOException if the JSON string is invalid with respect to CFCustomerDetails
     */
    public static CFCustomerDetails fromJson(String jsonString) throws IOException {
        return JSON.getGson().fromJson(jsonString, CFCustomerDetails.class);
    }

    /**
     * Convert an instance of CFCustomerDetails to an JSON string
     *
     * @return JSON string
     */
    public String toJson() {
        return JSON.getGson().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy