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

io.swagger.client.model.UserIdentifiersParams Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
/*
 * finAPI RESTful Services
 * finAPI RESTful Services
 *
 * OpenAPI spec version: v1.64.0
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */


package io.swagger.client.model;

import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 * User identifiers params
 */
@ApiModel(description = "User identifiers params")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-02-05T12:19:21.458Z")
public class UserIdentifiersParams {
  @SerializedName("userIds")
  private List userIds = new ArrayList();

  public UserIdentifiersParams userIds(List userIds) {
    this.userIds = userIds;
    return this;
  }

  public UserIdentifiersParams addUserIdsItem(String userIdsItem) {
    this.userIds.add(userIdsItem);
    return this;
  }

   /**
   * List of user identifiers
   * @return userIds
  **/
  @ApiModelProperty(example = "[\"first_user\",\"second_user\",\"third_user\",\"fourth_user\"]", required = true, value = "List of user identifiers")
  public List getUserIds() {
    return userIds;
  }

  public void setUserIds(List userIds) {
    this.userIds = userIds;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    UserIdentifiersParams userIdentifiersParams = (UserIdentifiersParams) o;
    return Objects.equals(this.userIds, userIdentifiersParams.userIds);
  }

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


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class UserIdentifiersParams {\n");
    
    sb.append("    userIds: ").append(toIndentedString(userIds)).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(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy