fi.metatavu.restfulptv.server.rest.model.OrganizationService Maven / Gradle / Ivy
package fi.metatavu.restfulptv.server.rest.model;
import fi.metatavu.restfulptv.server.rest.model.LanguageItem;
import fi.metatavu.restfulptv.server.rest.model.WebPage;
import java.util.ArrayList;
import java.util.List;
import io.swagger.annotations.*;
import java.util.Objects;
public class OrganizationService {
private List additionalInformation = new ArrayList();
private String serviceId = null;
private String organizationId = null;
private String roleType = null;
private String provisionType = null;
private List webPages = new ArrayList();
/**
* Localized list of additional information.
**/
public OrganizationService additionalInformation(List additionalInformation) {
this.additionalInformation = additionalInformation;
return this;
}
@ApiModelProperty(example = "null", value = "Localized list of additional information.")
public List getAdditionalInformation() {
return additionalInformation;
}
public void setAdditionalInformation(List additionalInformation) {
this.additionalInformation = additionalInformation;
}
/**
* PTV service identifier.
**/
public OrganizationService serviceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
@ApiModelProperty(example = "null", value = "PTV service identifier.")
public String getServiceId() {
return serviceId;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
/**
* PTV organization identifier (organization related to the service). Required if role type is Responsible or if ProvisionType is SelfProduced.
**/
public OrganizationService organizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
@ApiModelProperty(example = "null", value = "PTV organization identifier (organization related to the service). Required if role type is Responsible or if ProvisionType is SelfProduced.")
public String getOrganizationId() {
return organizationId;
}
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId;
}
/**
* Role type, valid values Responsible or Producer.
**/
public OrganizationService roleType(String roleType) {
this.roleType = roleType;
return this;
}
@ApiModelProperty(example = "null", value = "Role type, valid values Responsible or Producer.")
public String getRoleType() {
return roleType;
}
public void setRoleType(String roleType) {
this.roleType = roleType;
}
/**
* Provision type, valid values SelfProduced, VoucherServices, PurchaseServices or Other. Required if RoleType value is Producer.
**/
public OrganizationService provisionType(String provisionType) {
this.provisionType = provisionType;
return this;
}
@ApiModelProperty(example = "null", value = "Provision type, valid values SelfProduced, VoucherServices, PurchaseServices or Other. Required if RoleType value is Producer.")
public String getProvisionType() {
return provisionType;
}
public void setProvisionType(String provisionType) {
this.provisionType = provisionType;
}
/**
* List of web pages.
**/
public OrganizationService webPages(List webPages) {
this.webPages = webPages;
return this;
}
@ApiModelProperty(example = "null", value = "List of web pages.")
public List getWebPages() {
return webPages;
}
public void setWebPages(List webPages) {
this.webPages = webPages;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OrganizationService organizationService = (OrganizationService) o;
return Objects.equals(additionalInformation, organizationService.additionalInformation) &&
Objects.equals(serviceId, organizationService.serviceId) &&
Objects.equals(organizationId, organizationService.organizationId) &&
Objects.equals(roleType, organizationService.roleType) &&
Objects.equals(provisionType, organizationService.provisionType) &&
Objects.equals(webPages, organizationService.webPages);
}
@Override
public int hashCode() {
return Objects.hash(additionalInformation, serviceId, organizationId, roleType, provisionType, webPages);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OrganizationService {\n");
sb.append(" additionalInformation: ").append(toIndentedString(additionalInformation)).append("\n");
sb.append(" serviceId: ").append(toIndentedString(serviceId)).append("\n");
sb.append(" organizationId: ").append(toIndentedString(organizationId)).append("\n");
sb.append(" roleType: ").append(toIndentedString(roleType)).append("\n");
sb.append(" provisionType: ").append(toIndentedString(provisionType)).append("\n");
sb.append(" webPages: ").append(toIndentedString(webPages)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}