com.google.api.services.chromemanagement.v1.model.GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData 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;
/**
* Information of the policies applied on an extension.
*
* 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 GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData extends com.google.api.client.json.GenericJson {
/**
* Output only. ID of the extension.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String extensionId;
/**
* Output only. Name of the extension.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String extensionName;
/**
* Output only. Information of the policies applied on the extension.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List policyData;
/**
* Output only. ID of the extension.
* @return value or {@code null} for none
*/
public java.lang.String getExtensionId() {
return extensionId;
}
/**
* Output only. ID of the extension.
* @param extensionId extensionId or {@code null} for none
*/
public GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData setExtensionId(java.lang.String extensionId) {
this.extensionId = extensionId;
return this;
}
/**
* Output only. Name of the extension.
* @return value or {@code null} for none
*/
public java.lang.String getExtensionName() {
return extensionName;
}
/**
* Output only. Name of the extension.
* @param extensionName extensionName or {@code null} for none
*/
public GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData setExtensionName(java.lang.String extensionName) {
this.extensionName = extensionName;
return this;
}
/**
* Output only. Information of the policies applied on the extension.
* @return value or {@code null} for none
*/
public java.util.List getPolicyData() {
return policyData;
}
/**
* Output only. Information of the policies applied on the extension.
* @param policyData policyData or {@code null} for none
*/
public GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData setPolicyData(java.util.List policyData) {
this.policyData = policyData;
return this;
}
@Override
public GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData set(String fieldName, Object value) {
return (GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData) super.set(fieldName, value);
}
@Override
public GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData clone() {
return (GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy