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

org.finra.herd.sdk.model.AllowedAttributeValuesDeleteRequest Maven / Gradle / Ivy

There is a newer version: 0.160.0
Show newest version
/*
 * herd-external
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: 0.125.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package org.finra.herd.sdk.model;

import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.finra.herd.sdk.model.AttributeValueListKey;

/**
 * AllowedAttributeValuesDeleteRequest
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class AllowedAttributeValuesDeleteRequest {
  @JsonProperty("attributeValueListKey")
  private AttributeValueListKey attributeValueListKey = null;

  @JsonProperty("allowedAttributeValues")
  private List allowedAttributeValues = null;

  public AllowedAttributeValuesDeleteRequest attributeValueListKey(AttributeValueListKey attributeValueListKey) {
    this.attributeValueListKey = attributeValueListKey;
    return this;
  }

   /**
   * Get attributeValueListKey
   * @return attributeValueListKey
  **/
  @ApiModelProperty(required = true, value = "")
  public AttributeValueListKey getAttributeValueListKey() {
    return attributeValueListKey;
  }

  public void setAttributeValueListKey(AttributeValueListKey attributeValueListKey) {
    this.attributeValueListKey = attributeValueListKey;
  }

  public AllowedAttributeValuesDeleteRequest allowedAttributeValues(List allowedAttributeValues) {
    this.allowedAttributeValues = allowedAttributeValues;
    return this;
  }

  public AllowedAttributeValuesDeleteRequest addAllowedAttributeValuesItem(String allowedAttributeValuesItem) {
    if (this.allowedAttributeValues == null) {
      this.allowedAttributeValues = new ArrayList();
    }
    this.allowedAttributeValues.add(allowedAttributeValuesItem);
    return this;
  }

   /**
   * List of Allowed Attribute Values
   * @return allowedAttributeValues
  **/
  @ApiModelProperty(value = "List of Allowed Attribute Values")
  public List getAllowedAttributeValues() {
    return allowedAttributeValues;
  }

  public void setAllowedAttributeValues(List allowedAttributeValues) {
    this.allowedAttributeValues = allowedAttributeValues;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    AllowedAttributeValuesDeleteRequest allowedAttributeValuesDeleteRequest = (AllowedAttributeValuesDeleteRequest) o;
    return Objects.equals(this.attributeValueListKey, allowedAttributeValuesDeleteRequest.attributeValueListKey) &&
        Objects.equals(this.allowedAttributeValues, allowedAttributeValuesDeleteRequest.allowedAttributeValues);
  }

  @Override
  public int hashCode() {
    return Objects.hash(attributeValueListKey, allowedAttributeValues);
  }


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