Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Geração dos POJOs do hcm/recruitment
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Aug 14, 2020
1 parent f19fa50 commit 2b29231
Show file tree
Hide file tree
Showing 65 changed files with 11,136 additions and 692 deletions.
190 changes: 190 additions & 0 deletions src/main/java/br/com/senior/hcm/recruitment/pojos/Ability.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
/*
* Recrutamento e Seleção
* Serviço do Gestão de Recrutamento e Seleção.
*
* OpenAPI spec version: 15.10.4
* Contact: [email protected]
*
* 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 br.com.senior.hcm.recruitment.pojos;

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 org.threeten.bp.OffsetDateTime;

/**
* Ability
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-08-14T11:43:22.583Z")



public class Ability {
@SerializedName("createdAt")
private OffsetDateTime createdAt = null;

@SerializedName("resumeId")
private String resumeId = null;

@SerializedName("description")
private String description = null;

@SerializedName("id")
private String id = null;

@SerializedName("updatedAt")
private OffsetDateTime updatedAt = null;

public Ability createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}

/**
* Data de criação.
* @return createdAt
**/
@ApiModelProperty(value = "Data de criação.")
public OffsetDateTime getCreatedAt() {
return createdAt;
}

public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}

public Ability resumeId(String resumeId) {
this.resumeId = resumeId;
return this;
}

/**
* Identificador do currículo à qual a habilidade está associada.
* @return resumeId
**/
@ApiModelProperty(value = "Identificador do currículo à qual a habilidade está associada.")
public String getResumeId() {
return resumeId;
}

public void setResumeId(String resumeId) {
this.resumeId = resumeId;
}

public Ability description(String description) {
this.description = description;
return this;
}

/**
* Descrição da habilidade.
* @return description
**/
@ApiModelProperty(value = "Descrição da habilidade.")
public String getDescription() {
return description;
}

public void setDescription(String description) {
this.description = description;
}

public Ability id(String id) {
this.id = id;
return this;
}

/**
* Identificador único da entidade.
* @return id
**/
@ApiModelProperty(value = "Identificador único da entidade.")
public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public Ability updatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}

/**
* Data da última alteração.
* @return updatedAt
**/
@ApiModelProperty(value = "Data da última alteração.")
public OffsetDateTime getUpdatedAt() {
return updatedAt;
}

public void setUpdatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
}


@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Ability ability = (Ability) o;
return Objects.equals(this.createdAt, ability.createdAt) &&
Objects.equals(this.resumeId, ability.resumeId) &&
Objects.equals(this.description, ability.description) &&
Objects.equals(this.id, ability.id) &&
Objects.equals(this.updatedAt, ability.updatedAt);
}

@Override
public int hashCode() {
return Objects.hash(createdAt, resumeId, description, id, updatedAt);
}


@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Ability {\n");

sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" resumeId: ").append(toIndentedString(resumeId)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).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 ");
}

}

Loading

0 comments on commit 2b29231

Please sign in to comment.