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

io.phasetwo.service.importexport.representation.OrganizationRoleRepresentation Maven / Gradle / Ivy

There is a newer version: 0.79
Show newest version
package io.phasetwo.service.importexport.representation;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class OrganizationRoleRepresentation {

  @JsonProperty("name")
  private String name;

  @JsonProperty("description")
  private String description;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy