Java tutorial
/*Copyright (c) 2015-2016 gmail.com All Rights Reserved. This software is the confidential and proprietary information of gmail.com You shall not disclose such Confidential Information and shall use it only in accordance with the terms of the source code license agreement you entered into with gmail.com*/ package com.ezsource_mobile.rfxdb.models.query; /*This is a Studio Managed File. DO NOT EDIT THIS FILE. Your changes may be reverted by Studio.*/ import java.io.Serializable; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; public class UpdateMobileRegnIdRequest implements Serializable { @JsonProperty("mobileRegnId") private String mobileRegnId; public String getMobileRegnId() { return this.mobileRegnId; } public void setMobileRegnId(String mobileRegnId) { this.mobileRegnId = mobileRegnId; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof UpdateMobileRegnIdRequest)) return false; final UpdateMobileRegnIdRequest updateMobileRegnIdRequest = (UpdateMobileRegnIdRequest) o; return Objects.equals(getMobileRegnId(), updateMobileRegnIdRequest.getMobileRegnId()); } @Override public int hashCode() { return Objects.hash(getMobileRegnId()); } }