All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.mapsengine.model.RasterCollectionsRaster Maven / Gradle / Ivy

There is a newer version: v1-rev66-1.21.0
Show newest version
/*
 * Copyright 2010 Google Inc.
 *
 * 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/google/apis-client-generator/
 * (build: 2015-11-16 19:10:01 UTC)
 * on 2015-12-05 at 02:54:01 UTC 
 * Modify at your own risk.
 */

package com.google.api.services.mapsengine.model;

/**
 * A raster resource.
 *
 * 

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 Google Maps Engine 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 RasterCollectionsRaster extends com.google.api.client.json.GenericJson { /** * A rectangular bounding box which contains all of the data in this Raster. The box is expressed * as \"west, south, east, north\". The numbers represent latitudes and longitudes in decimal * degrees. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List bbox; /** * The creation time of this raster. The value is an RFC 3339 formatted date-time value (e.g. * 1970-01-01T00:00:00Z). * The value may be {@code null}. */ @com.google.api.client.util.Key private com.google.api.client.util.DateTime creationTime; /** * The description of this Raster, supplied by the author. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String description; /** * A globally unique ID, used to refer to this Raster. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String id; /** * The last modified time of this raster. The value is an RFC 3339 formatted date-time value (e.g. * 1970-01-01T00:00:00Z). * The value may be {@code null}. */ @com.google.api.client.util.Key private com.google.api.client.util.DateTime lastModifiedTime; /** * The name of this Raster, supplied by the author. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * The ID of the project that this Raster is in. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String projectId; /** * The type of this Raster. Always "image" today. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String rasterType; /** * Tags of this Raster. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List tags; /** * A rectangular bounding box which contains all of the data in this Raster. The box is expressed * as \"west, south, east, north\". The numbers represent latitudes and longitudes in decimal * degrees. * @return value or {@code null} for none */ public java.util.List getBbox() { return bbox; } /** * A rectangular bounding box which contains all of the data in this Raster. The box is expressed * as \"west, south, east, north\". The numbers represent latitudes and longitudes in decimal * degrees. * @param bbox bbox or {@code null} for none */ public RasterCollectionsRaster setBbox(java.util.List bbox) { this.bbox = bbox; return this; } /** * The creation time of this raster. The value is an RFC 3339 formatted date-time value (e.g. * 1970-01-01T00:00:00Z). * @return value or {@code null} for none */ public com.google.api.client.util.DateTime getCreationTime() { return creationTime; } /** * The creation time of this raster. The value is an RFC 3339 formatted date-time value (e.g. * 1970-01-01T00:00:00Z). * @param creationTime creationTime or {@code null} for none */ public RasterCollectionsRaster setCreationTime(com.google.api.client.util.DateTime creationTime) { this.creationTime = creationTime; return this; } /** * The description of this Raster, supplied by the author. * @return value or {@code null} for none */ public java.lang.String getDescription() { return description; } /** * The description of this Raster, supplied by the author. * @param description description or {@code null} for none */ public RasterCollectionsRaster setDescription(java.lang.String description) { this.description = description; return this; } /** * A globally unique ID, used to refer to this Raster. * @return value or {@code null} for none */ public java.lang.String getId() { return id; } /** * A globally unique ID, used to refer to this Raster. * @param id id or {@code null} for none */ public RasterCollectionsRaster setId(java.lang.String id) { this.id = id; return this; } /** * The last modified time of this raster. The value is an RFC 3339 formatted date-time value (e.g. * 1970-01-01T00:00:00Z). * @return value or {@code null} for none */ public com.google.api.client.util.DateTime getLastModifiedTime() { return lastModifiedTime; } /** * The last modified time of this raster. The value is an RFC 3339 formatted date-time value (e.g. * 1970-01-01T00:00:00Z). * @param lastModifiedTime lastModifiedTime or {@code null} for none */ public RasterCollectionsRaster setLastModifiedTime(com.google.api.client.util.DateTime lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; return this; } /** * The name of this Raster, supplied by the author. * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * The name of this Raster, supplied by the author. * @param name name or {@code null} for none */ public RasterCollectionsRaster setName(java.lang.String name) { this.name = name; return this; } /** * The ID of the project that this Raster is in. * @return value or {@code null} for none */ public java.lang.String getProjectId() { return projectId; } /** * The ID of the project that this Raster is in. * @param projectId projectId or {@code null} for none */ public RasterCollectionsRaster setProjectId(java.lang.String projectId) { this.projectId = projectId; return this; } /** * The type of this Raster. Always "image" today. * @return value or {@code null} for none */ public java.lang.String getRasterType() { return rasterType; } /** * The type of this Raster. Always "image" today. * @param rasterType rasterType or {@code null} for none */ public RasterCollectionsRaster setRasterType(java.lang.String rasterType) { this.rasterType = rasterType; return this; } /** * Tags of this Raster. * @return value or {@code null} for none */ public java.util.List getTags() { return tags; } /** * Tags of this Raster. * @param tags tags or {@code null} for none */ public RasterCollectionsRaster setTags(java.util.List tags) { this.tags = tags; return this; } @Override public RasterCollectionsRaster set(String fieldName, Object value) { return (RasterCollectionsRaster) super.set(fieldName, value); } @Override public RasterCollectionsRaster clone() { return (RasterCollectionsRaster) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy