com.google.api.services.androiddeviceprovisioning.v1.model.UnclaimDeviceRequest Maven / Gradle / Ivy
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.androiddeviceprovisioning.v1.model;
/**
* Request message to unclaim a device.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Android Device Provisioning Partner API. For a
* detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class UnclaimDeviceRequest extends com.google.api.client.json.GenericJson {
/**
* Required. The device ID returned by `ClaimDevice`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long deviceId;
/**
* Required. The device identifier you used when you claimed this device.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private DeviceIdentifier deviceIdentifier;
/**
* Required. The section type of the device's provisioning record.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String sectionType;
/**
* The duration of the vacation unlock starting from when the request is processed. (1 day is
* treated as 24 hours)
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer vacationModeDays;
/**
* The expiration time of the vacation unlock.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String vacationModeExpireTime;
/**
* Required. The device ID returned by `ClaimDevice`.
* @return value or {@code null} for none
*/
public java.lang.Long getDeviceId() {
return deviceId;
}
/**
* Required. The device ID returned by `ClaimDevice`.
* @param deviceId deviceId or {@code null} for none
*/
public UnclaimDeviceRequest setDeviceId(java.lang.Long deviceId) {
this.deviceId = deviceId;
return this;
}
/**
* Required. The device identifier you used when you claimed this device.
* @return value or {@code null} for none
*/
public DeviceIdentifier getDeviceIdentifier() {
return deviceIdentifier;
}
/**
* Required. The device identifier you used when you claimed this device.
* @param deviceIdentifier deviceIdentifier or {@code null} for none
*/
public UnclaimDeviceRequest setDeviceIdentifier(DeviceIdentifier deviceIdentifier) {
this.deviceIdentifier = deviceIdentifier;
return this;
}
/**
* Required. The section type of the device's provisioning record.
* @return value or {@code null} for none
*/
public java.lang.String getSectionType() {
return sectionType;
}
/**
* Required. The section type of the device's provisioning record.
* @param sectionType sectionType or {@code null} for none
*/
public UnclaimDeviceRequest setSectionType(java.lang.String sectionType) {
this.sectionType = sectionType;
return this;
}
/**
* The duration of the vacation unlock starting from when the request is processed. (1 day is
* treated as 24 hours)
* @return value or {@code null} for none
*/
public java.lang.Integer getVacationModeDays() {
return vacationModeDays;
}
/**
* The duration of the vacation unlock starting from when the request is processed. (1 day is
* treated as 24 hours)
* @param vacationModeDays vacationModeDays or {@code null} for none
*/
public UnclaimDeviceRequest setVacationModeDays(java.lang.Integer vacationModeDays) {
this.vacationModeDays = vacationModeDays;
return this;
}
/**
* The expiration time of the vacation unlock.
* @return value or {@code null} for none
*/
public String getVacationModeExpireTime() {
return vacationModeExpireTime;
}
/**
* The expiration time of the vacation unlock.
* @param vacationModeExpireTime vacationModeExpireTime or {@code null} for none
*/
public UnclaimDeviceRequest setVacationModeExpireTime(String vacationModeExpireTime) {
this.vacationModeExpireTime = vacationModeExpireTime;
return this;
}
@Override
public UnclaimDeviceRequest set(String fieldName, Object value) {
return (UnclaimDeviceRequest) super.set(fieldName, value);
}
@Override
public UnclaimDeviceRequest clone() {
return (UnclaimDeviceRequest) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy