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

com.conekta.model.CustomerAntifraudInfo Maven / Gradle / Ivy

Go to download

This is a java library that allows interaction with https://api.conekta.io API.

The newest version!
/*
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.0
 * 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.conekta.model;

import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;


/**
 * CustomerAntifraudInfo
 */
@JsonPropertyOrder({
  CustomerAntifraudInfo.JSON_PROPERTY_ACCOUNT_CREATED_AT,
  CustomerAntifraudInfo.JSON_PROPERTY_FIRST_PAID_AT
})
@JsonTypeName("customer_antifraud_info")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class CustomerAntifraudInfo {
  public static final String JSON_PROPERTY_ACCOUNT_CREATED_AT = "account_created_at";
  private Long accountCreatedAt;

  public static final String JSON_PROPERTY_FIRST_PAID_AT = "first_paid_at";
  private Long firstPaidAt;

  public CustomerAntifraudInfo() { 
  }

  public CustomerAntifraudInfo accountCreatedAt(Long accountCreatedAt) {
    this.accountCreatedAt = accountCreatedAt;
    return this;
  }

   /**
   * Get accountCreatedAt
   * @return accountCreatedAt
  **/
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_ACCOUNT_CREATED_AT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Long getAccountCreatedAt() {
    return accountCreatedAt;
  }


  @JsonProperty(JSON_PROPERTY_ACCOUNT_CREATED_AT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setAccountCreatedAt(Long accountCreatedAt) {
    this.accountCreatedAt = accountCreatedAt;
  }


  public CustomerAntifraudInfo firstPaidAt(Long firstPaidAt) {
    this.firstPaidAt = firstPaidAt;
    return this;
  }

   /**
   * Get firstPaidAt
   * @return firstPaidAt
  **/
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_FIRST_PAID_AT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Long getFirstPaidAt() {
    return firstPaidAt;
  }


  @JsonProperty(JSON_PROPERTY_FIRST_PAID_AT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setFirstPaidAt(Long firstPaidAt) {
    this.firstPaidAt = firstPaidAt;
  }


  /**
   * Return true if this customer_antifraud_info object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    CustomerAntifraudInfo customerAntifraudInfo = (CustomerAntifraudInfo) o;
    return Objects.equals(this.accountCreatedAt, customerAntifraudInfo.accountCreatedAt) &&
        Objects.equals(this.firstPaidAt, customerAntifraudInfo.firstPaidAt);
  }

  @Override
  public int hashCode() {
    return Objects.hash(accountCreatedAt, firstPaidAt);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CustomerAntifraudInfo {\n");
    sb.append("    accountCreatedAt: ").append(toIndentedString(accountCreatedAt)).append("\n");
    sb.append("    firstPaidAt: ").append(toIndentedString(firstPaidAt)).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    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy