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

io.phasetwo.service.representation.SwitchOrganization Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.Valid;

public class SwitchOrganization {
  private @Valid String id = null;

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

  @JsonProperty("id")
  public String getId() {
    return id;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy