com.google.api.services.migrationcenter.v1.model.Report 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.migrationcenter.v1.model;
/**
* Report represents a point-in-time rendering of the ReportConfig results.
*
* 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 Migration Center 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 Report extends com.google.api.client.json.GenericJson {
/**
* Output only. Creation timestamp.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String createTime;
/**
* Free-text description.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String description;
/**
* User-friendly display name. Maximum length is 63 characters.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String displayName;
/**
* Output only. Name of resource.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* Report creation state.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String state;
/**
* Output only. Summary view of the Report.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ReportSummary summary;
/**
* Report type.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String type;
/**
* Output only. Last update timestamp.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String updateTime;
/**
* Output only. Creation timestamp.
* @return value or {@code null} for none
*/
public String getCreateTime() {
return createTime;
}
/**
* Output only. Creation timestamp.
* @param createTime createTime or {@code null} for none
*/
public Report setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* Free-text description.
* @return value or {@code null} for none
*/
public java.lang.String getDescription() {
return description;
}
/**
* Free-text description.
* @param description description or {@code null} for none
*/
public Report setDescription(java.lang.String description) {
this.description = description;
return this;
}
/**
* User-friendly display name. Maximum length is 63 characters.
* @return value or {@code null} for none
*/
public java.lang.String getDisplayName() {
return displayName;
}
/**
* User-friendly display name. Maximum length is 63 characters.
* @param displayName displayName or {@code null} for none
*/
public Report setDisplayName(java.lang.String displayName) {
this.displayName = displayName;
return this;
}
/**
* Output only. Name of resource.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* Output only. Name of resource.
* @param name name or {@code null} for none
*/
public Report setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* Report creation state.
* @return value or {@code null} for none
*/
public java.lang.String getState() {
return state;
}
/**
* Report creation state.
* @param state state or {@code null} for none
*/
public Report setState(java.lang.String state) {
this.state = state;
return this;
}
/**
* Output only. Summary view of the Report.
* @return value or {@code null} for none
*/
public ReportSummary getSummary() {
return summary;
}
/**
* Output only. Summary view of the Report.
* @param summary summary or {@code null} for none
*/
public Report setSummary(ReportSummary summary) {
this.summary = summary;
return this;
}
/**
* Report type.
* @return value or {@code null} for none
*/
public java.lang.String getType() {
return type;
}
/**
* Report type.
* @param type type or {@code null} for none
*/
public Report setType(java.lang.String type) {
this.type = type;
return this;
}
/**
* Output only. Last update timestamp.
* @return value or {@code null} for none
*/
public String getUpdateTime() {
return updateTime;
}
/**
* Output only. Last update timestamp.
* @param updateTime updateTime or {@code null} for none
*/
public Report setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
@Override
public Report set(String fieldName, Object value) {
return (Report) super.set(fieldName, value);
}
@Override
public Report clone() {
return (Report) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy