fi.metatavu.restfulptv.client.model.ServiceLocationServiceChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restful-ptv-rest-client Show documentation
Show all versions of restful-ptv-rest-client Show documentation
Restful way to use Palvelutietovaranto.
/**
* RESTful PTV
* Restful way to use Palvelutietovaranto.
*
* OpenAPI spec version: v1
*
*
* 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.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package fi.metatavu.restfulptv.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import fi.metatavu.restfulptv.client.model.Address;
import fi.metatavu.restfulptv.client.model.Email;
import fi.metatavu.restfulptv.client.model.LanguageItem;
import fi.metatavu.restfulptv.client.model.LocalizedListItem;
import fi.metatavu.restfulptv.client.model.Phone;
import fi.metatavu.restfulptv.client.model.ServiceHour;
import fi.metatavu.restfulptv.client.model.WebPage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
@com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true)
/**
* ServiceLocationServiceChannel
*/
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2017-04-10T20:24:26.046+03:00")
public class ServiceLocationServiceChannel {
@JsonProperty("id")
private String id = null;
@JsonProperty("type")
private String type = null;
@JsonProperty("organizationId")
private String organizationId = null;
@JsonProperty("names")
private List names = new ArrayList();
@JsonProperty("descriptions")
private List descriptions = new ArrayList();
@JsonProperty("serviceAreaRestricted")
private Boolean serviceAreaRestricted = null;
@JsonProperty("supportPhones")
private List supportPhones = new ArrayList();
@JsonProperty("supportEmails")
private List supportEmails = new ArrayList();
@JsonProperty("email")
private String email = null;
@JsonProperty("phone")
private String phone = null;
@JsonProperty("languages")
private List languages = new ArrayList();
@JsonProperty("fax")
private String fax = null;
@JsonProperty("latitude")
private String latitude = null;
@JsonProperty("longitude")
private String longitude = null;
@JsonProperty("coordinateSystem")
private String coordinateSystem = null;
@JsonProperty("coordinatesSetManually")
private Boolean coordinatesSetManually = null;
@JsonProperty("phoneServiceCharge")
private Boolean phoneServiceCharge = null;
@JsonProperty("webPages")
private List webPages = new ArrayList();
@JsonProperty("serviceAreas")
private List serviceAreas = new ArrayList();
@JsonProperty("phoneChargeDescriptions")
private List phoneChargeDescriptions = new ArrayList();
@JsonProperty("addresses")
private List addresses = new ArrayList();
@JsonProperty("chargeTypes")
private List chargeTypes = new ArrayList();
@JsonProperty("serviceHours")
private List serviceHours = new ArrayList();
@JsonProperty("publishingStatus")
private String publishingStatus = null;
public ServiceLocationServiceChannel id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@ApiModelProperty(example = "null", value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public ServiceLocationServiceChannel type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(example = "null", value = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public ServiceLocationServiceChannel organizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
/**
* Get organizationId
* @return organizationId
**/
@ApiModelProperty(example = "null", value = "")
public String getOrganizationId() {
return organizationId;
}
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId;
}
public ServiceLocationServiceChannel names(List names) {
this.names = names;
return this;
}
public ServiceLocationServiceChannel addNamesItem(LocalizedListItem namesItem) {
this.names.add(namesItem);
return this;
}
/**
* Get names
* @return names
**/
@ApiModelProperty(example = "null", value = "")
public List getNames() {
return names;
}
public void setNames(List names) {
this.names = names;
}
public ServiceLocationServiceChannel descriptions(List descriptions) {
this.descriptions = descriptions;
return this;
}
public ServiceLocationServiceChannel addDescriptionsItem(LocalizedListItem descriptionsItem) {
this.descriptions.add(descriptionsItem);
return this;
}
/**
* Get descriptions
* @return descriptions
**/
@ApiModelProperty(example = "null", value = "")
public List getDescriptions() {
return descriptions;
}
public void setDescriptions(List descriptions) {
this.descriptions = descriptions;
}
public ServiceLocationServiceChannel serviceAreaRestricted(Boolean serviceAreaRestricted) {
this.serviceAreaRestricted = serviceAreaRestricted;
return this;
}
/**
* Get serviceAreaRestricted
* @return serviceAreaRestricted
**/
@ApiModelProperty(example = "null", value = "")
public Boolean getServiceAreaRestricted() {
return serviceAreaRestricted;
}
public void setServiceAreaRestricted(Boolean serviceAreaRestricted) {
this.serviceAreaRestricted = serviceAreaRestricted;
}
public ServiceLocationServiceChannel supportPhones(List supportPhones) {
this.supportPhones = supportPhones;
return this;
}
public ServiceLocationServiceChannel addSupportPhonesItem(Phone supportPhonesItem) {
this.supportPhones.add(supportPhonesItem);
return this;
}
/**
* Get supportPhones
* @return supportPhones
**/
@ApiModelProperty(example = "null", value = "")
public List getSupportPhones() {
return supportPhones;
}
public void setSupportPhones(List supportPhones) {
this.supportPhones = supportPhones;
}
public ServiceLocationServiceChannel supportEmails(List supportEmails) {
this.supportEmails = supportEmails;
return this;
}
public ServiceLocationServiceChannel addSupportEmailsItem(Email supportEmailsItem) {
this.supportEmails.add(supportEmailsItem);
return this;
}
/**
* Get supportEmails
* @return supportEmails
**/
@ApiModelProperty(example = "null", value = "")
public List getSupportEmails() {
return supportEmails;
}
public void setSupportEmails(List supportEmails) {
this.supportEmails = supportEmails;
}
public ServiceLocationServiceChannel email(String email) {
this.email = email;
return this;
}
/**
* Get email
* @return email
**/
@ApiModelProperty(example = "null", value = "")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public ServiceLocationServiceChannel phone(String phone) {
this.phone = phone;
return this;
}
/**
* Get phone
* @return phone
**/
@ApiModelProperty(example = "null", value = "")
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public ServiceLocationServiceChannel languages(List languages) {
this.languages = languages;
return this;
}
public ServiceLocationServiceChannel addLanguagesItem(String languagesItem) {
this.languages.add(languagesItem);
return this;
}
/**
* Get languages
* @return languages
**/
@ApiModelProperty(example = "null", value = "")
public List getLanguages() {
return languages;
}
public void setLanguages(List languages) {
this.languages = languages;
}
public ServiceLocationServiceChannel fax(String fax) {
this.fax = fax;
return this;
}
/**
* Get fax
* @return fax
**/
@ApiModelProperty(example = "null", value = "")
public String getFax() {
return fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public ServiceLocationServiceChannel latitude(String latitude) {
this.latitude = latitude;
return this;
}
/**
* Get latitude
* @return latitude
**/
@ApiModelProperty(example = "null", value = "")
public String getLatitude() {
return latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public ServiceLocationServiceChannel longitude(String longitude) {
this.longitude = longitude;
return this;
}
/**
* Get longitude
* @return longitude
**/
@ApiModelProperty(example = "null", value = "")
public String getLongitude() {
return longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
public ServiceLocationServiceChannel coordinateSystem(String coordinateSystem) {
this.coordinateSystem = coordinateSystem;
return this;
}
/**
* Get coordinateSystem
* @return coordinateSystem
**/
@ApiModelProperty(example = "null", value = "")
public String getCoordinateSystem() {
return coordinateSystem;
}
public void setCoordinateSystem(String coordinateSystem) {
this.coordinateSystem = coordinateSystem;
}
public ServiceLocationServiceChannel coordinatesSetManually(Boolean coordinatesSetManually) {
this.coordinatesSetManually = coordinatesSetManually;
return this;
}
/**
* Get coordinatesSetManually
* @return coordinatesSetManually
**/
@ApiModelProperty(example = "null", value = "")
public Boolean getCoordinatesSetManually() {
return coordinatesSetManually;
}
public void setCoordinatesSetManually(Boolean coordinatesSetManually) {
this.coordinatesSetManually = coordinatesSetManually;
}
public ServiceLocationServiceChannel phoneServiceCharge(Boolean phoneServiceCharge) {
this.phoneServiceCharge = phoneServiceCharge;
return this;
}
/**
* Get phoneServiceCharge
* @return phoneServiceCharge
**/
@ApiModelProperty(example = "null", value = "")
public Boolean getPhoneServiceCharge() {
return phoneServiceCharge;
}
public void setPhoneServiceCharge(Boolean phoneServiceCharge) {
this.phoneServiceCharge = phoneServiceCharge;
}
public ServiceLocationServiceChannel webPages(List webPages) {
this.webPages = webPages;
return this;
}
public ServiceLocationServiceChannel addWebPagesItem(WebPage webPagesItem) {
this.webPages.add(webPagesItem);
return this;
}
/**
* Get webPages
* @return webPages
**/
@ApiModelProperty(example = "null", value = "")
public List getWebPages() {
return webPages;
}
public void setWebPages(List webPages) {
this.webPages = webPages;
}
public ServiceLocationServiceChannel serviceAreas(List serviceAreas) {
this.serviceAreas = serviceAreas;
return this;
}
public ServiceLocationServiceChannel addServiceAreasItem(String serviceAreasItem) {
this.serviceAreas.add(serviceAreasItem);
return this;
}
/**
* Get serviceAreas
* @return serviceAreas
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceAreas() {
return serviceAreas;
}
public void setServiceAreas(List serviceAreas) {
this.serviceAreas = serviceAreas;
}
public ServiceLocationServiceChannel phoneChargeDescriptions(List phoneChargeDescriptions) {
this.phoneChargeDescriptions = phoneChargeDescriptions;
return this;
}
public ServiceLocationServiceChannel addPhoneChargeDescriptionsItem(LanguageItem phoneChargeDescriptionsItem) {
this.phoneChargeDescriptions.add(phoneChargeDescriptionsItem);
return this;
}
/**
* Get phoneChargeDescriptions
* @return phoneChargeDescriptions
**/
@ApiModelProperty(example = "null", value = "")
public List getPhoneChargeDescriptions() {
return phoneChargeDescriptions;
}
public void setPhoneChargeDescriptions(List phoneChargeDescriptions) {
this.phoneChargeDescriptions = phoneChargeDescriptions;
}
public ServiceLocationServiceChannel addresses(List addresses) {
this.addresses = addresses;
return this;
}
public ServiceLocationServiceChannel addAddressesItem(Address addressesItem) {
this.addresses.add(addressesItem);
return this;
}
/**
* Get addresses
* @return addresses
**/
@ApiModelProperty(example = "null", value = "")
public List getAddresses() {
return addresses;
}
public void setAddresses(List addresses) {
this.addresses = addresses;
}
public ServiceLocationServiceChannel chargeTypes(List chargeTypes) {
this.chargeTypes = chargeTypes;
return this;
}
public ServiceLocationServiceChannel addChargeTypesItem(String chargeTypesItem) {
this.chargeTypes.add(chargeTypesItem);
return this;
}
/**
* Get chargeTypes
* @return chargeTypes
**/
@ApiModelProperty(example = "null", value = "")
public List getChargeTypes() {
return chargeTypes;
}
public void setChargeTypes(List chargeTypes) {
this.chargeTypes = chargeTypes;
}
public ServiceLocationServiceChannel serviceHours(List serviceHours) {
this.serviceHours = serviceHours;
return this;
}
public ServiceLocationServiceChannel addServiceHoursItem(ServiceHour serviceHoursItem) {
this.serviceHours.add(serviceHoursItem);
return this;
}
/**
* Get serviceHours
* @return serviceHours
**/
@ApiModelProperty(example = "null", value = "")
public List getServiceHours() {
return serviceHours;
}
public void setServiceHours(List serviceHours) {
this.serviceHours = serviceHours;
}
public ServiceLocationServiceChannel publishingStatus(String publishingStatus) {
this.publishingStatus = publishingStatus;
return this;
}
/**
* Get publishingStatus
* @return publishingStatus
**/
@ApiModelProperty(example = "null", value = "")
public String getPublishingStatus() {
return publishingStatus;
}
public void setPublishingStatus(String publishingStatus) {
this.publishingStatus = publishingStatus;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ServiceLocationServiceChannel serviceLocationServiceChannel = (ServiceLocationServiceChannel) o;
return Objects.equals(this.id, serviceLocationServiceChannel.id) &&
Objects.equals(this.type, serviceLocationServiceChannel.type) &&
Objects.equals(this.organizationId, serviceLocationServiceChannel.organizationId) &&
Objects.equals(this.names, serviceLocationServiceChannel.names) &&
Objects.equals(this.descriptions, serviceLocationServiceChannel.descriptions) &&
Objects.equals(this.serviceAreaRestricted, serviceLocationServiceChannel.serviceAreaRestricted) &&
Objects.equals(this.supportPhones, serviceLocationServiceChannel.supportPhones) &&
Objects.equals(this.supportEmails, serviceLocationServiceChannel.supportEmails) &&
Objects.equals(this.email, serviceLocationServiceChannel.email) &&
Objects.equals(this.phone, serviceLocationServiceChannel.phone) &&
Objects.equals(this.languages, serviceLocationServiceChannel.languages) &&
Objects.equals(this.fax, serviceLocationServiceChannel.fax) &&
Objects.equals(this.latitude, serviceLocationServiceChannel.latitude) &&
Objects.equals(this.longitude, serviceLocationServiceChannel.longitude) &&
Objects.equals(this.coordinateSystem, serviceLocationServiceChannel.coordinateSystem) &&
Objects.equals(this.coordinatesSetManually, serviceLocationServiceChannel.coordinatesSetManually) &&
Objects.equals(this.phoneServiceCharge, serviceLocationServiceChannel.phoneServiceCharge) &&
Objects.equals(this.webPages, serviceLocationServiceChannel.webPages) &&
Objects.equals(this.serviceAreas, serviceLocationServiceChannel.serviceAreas) &&
Objects.equals(this.phoneChargeDescriptions, serviceLocationServiceChannel.phoneChargeDescriptions) &&
Objects.equals(this.addresses, serviceLocationServiceChannel.addresses) &&
Objects.equals(this.chargeTypes, serviceLocationServiceChannel.chargeTypes) &&
Objects.equals(this.serviceHours, serviceLocationServiceChannel.serviceHours) &&
Objects.equals(this.publishingStatus, serviceLocationServiceChannel.publishingStatus);
}
@Override
public int hashCode() {
return Objects.hash(id, type, organizationId, names, descriptions, serviceAreaRestricted, supportPhones, supportEmails, email, phone, languages, fax, latitude, longitude, coordinateSystem, coordinatesSetManually, phoneServiceCharge, webPages, serviceAreas, phoneChargeDescriptions, addresses, chargeTypes, serviceHours, publishingStatus);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ServiceLocationServiceChannel {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" organizationId: ").append(toIndentedString(organizationId)).append("\n");
sb.append(" names: ").append(toIndentedString(names)).append("\n");
sb.append(" descriptions: ").append(toIndentedString(descriptions)).append("\n");
sb.append(" serviceAreaRestricted: ").append(toIndentedString(serviceAreaRestricted)).append("\n");
sb.append(" supportPhones: ").append(toIndentedString(supportPhones)).append("\n");
sb.append(" supportEmails: ").append(toIndentedString(supportEmails)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" phone: ").append(toIndentedString(phone)).append("\n");
sb.append(" languages: ").append(toIndentedString(languages)).append("\n");
sb.append(" fax: ").append(toIndentedString(fax)).append("\n");
sb.append(" latitude: ").append(toIndentedString(latitude)).append("\n");
sb.append(" longitude: ").append(toIndentedString(longitude)).append("\n");
sb.append(" coordinateSystem: ").append(toIndentedString(coordinateSystem)).append("\n");
sb.append(" coordinatesSetManually: ").append(toIndentedString(coordinatesSetManually)).append("\n");
sb.append(" phoneServiceCharge: ").append(toIndentedString(phoneServiceCharge)).append("\n");
sb.append(" webPages: ").append(toIndentedString(webPages)).append("\n");
sb.append(" serviceAreas: ").append(toIndentedString(serviceAreas)).append("\n");
sb.append(" phoneChargeDescriptions: ").append(toIndentedString(phoneChargeDescriptions)).append("\n");
sb.append(" addresses: ").append(toIndentedString(addresses)).append("\n");
sb.append(" chargeTypes: ").append(toIndentedString(chargeTypes)).append("\n");
sb.append(" serviceHours: ").append(toIndentedString(serviceHours)).append("\n");
sb.append(" publishingStatus: ").append(toIndentedString(publishingStatus)).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 ");
}
}