![JAR search and dependency download from the Maven repository](/logo.png)
de.adorsys.psd2.model.MessageCode401AIS Maven / Gradle / Ivy
package de.adorsys.psd2.model;
import io.swagger.annotations.ApiModel;
import org.springframework.validation.annotation.Validated;
import java.util.Objects;
/**
* Message codes defined for AIS for HTTP Error code 401 (UNAUTHORIZED).
*/
@ApiModel(description = "Message codes defined for AIS for HTTP Error code 401 (UNAUTHORIZED).")
@Validated
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.SpringCodegen", date = "2021-05-24T13:41:46.273636+03:00[Europe/Kiev]")
public class MessageCode401AIS {
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
return true;
}
@Override
public int hashCode() {
return Objects.hash();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MessageCode401AIS {\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 - 2025 Weber Informatics LLC | Privacy Policy