com.google.api.services.chromemanagement.v1.model.GoogleChromeManagementV1TelemetryUser 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.chromemanagement.v1.model;
/**
* Telemetry data collected from a managed user. * Granular permission needed: TELEMETRY_API_USER
*
* 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 Chrome Management 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 GoogleChromeManagementV1TelemetryUser extends com.google.api.client.json.GenericJson {
/**
* G Suite Customer whose enterprise enrolled the device.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String customer;
/**
* Resource name of the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* Organization unit of the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String orgUnitId;
/**
* Telemetry data collected from a managed user and device.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List userDevice;
/**
* Email address of the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String userEmail;
/**
* Directory ID of the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String userId;
/**
* G Suite Customer whose enterprise enrolled the device.
* @return value or {@code null} for none
*/
public java.lang.String getCustomer() {
return customer;
}
/**
* G Suite Customer whose enterprise enrolled the device.
* @param customer customer or {@code null} for none
*/
public GoogleChromeManagementV1TelemetryUser setCustomer(java.lang.String customer) {
this.customer = customer;
return this;
}
/**
* Resource name of the user.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* Resource name of the user.
* @param name name or {@code null} for none
*/
public GoogleChromeManagementV1TelemetryUser setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* Organization unit of the user.
* @return value or {@code null} for none
*/
public java.lang.String getOrgUnitId() {
return orgUnitId;
}
/**
* Organization unit of the user.
* @param orgUnitId orgUnitId or {@code null} for none
*/
public GoogleChromeManagementV1TelemetryUser setOrgUnitId(java.lang.String orgUnitId) {
this.orgUnitId = orgUnitId;
return this;
}
/**
* Telemetry data collected from a managed user and device.
* @return value or {@code null} for none
*/
public java.util.List getUserDevice() {
return userDevice;
}
/**
* Telemetry data collected from a managed user and device.
* @param userDevice userDevice or {@code null} for none
*/
public GoogleChromeManagementV1TelemetryUser setUserDevice(java.util.List userDevice) {
this.userDevice = userDevice;
return this;
}
/**
* Email address of the user.
* @return value or {@code null} for none
*/
public java.lang.String getUserEmail() {
return userEmail;
}
/**
* Email address of the user.
* @param userEmail userEmail or {@code null} for none
*/
public GoogleChromeManagementV1TelemetryUser setUserEmail(java.lang.String userEmail) {
this.userEmail = userEmail;
return this;
}
/**
* Directory ID of the user.
* @return value or {@code null} for none
*/
public java.lang.String getUserId() {
return userId;
}
/**
* Directory ID of the user.
* @param userId userId or {@code null} for none
*/
public GoogleChromeManagementV1TelemetryUser setUserId(java.lang.String userId) {
this.userId = userId;
return this;
}
@Override
public GoogleChromeManagementV1TelemetryUser set(String fieldName, Object value) {
return (GoogleChromeManagementV1TelemetryUser) super.set(fieldName, value);
}
@Override
public GoogleChromeManagementV1TelemetryUser clone() {
return (GoogleChromeManagementV1TelemetryUser) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy