com.google.api.services.drive.model.GeneratedIds Maven / Gradle / Ivy
/*
* 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://code.google.com/p/google-apis-client-generator/
* (build: 2016-01-08 17:48:37 UTC)
* on 2016-01-12 at 03:52:10 UTC
* Modify at your own risk.
*/
package com.google.api.services.drive.model;
/**
* A list of generated IDs which can be provided in insert requests
*
* 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 Drive API. For a detailed explanation see:
* http://code.google.com/p/google-http-java-client/wiki/JSON
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GeneratedIds extends com.google.api.client.json.GenericJson {
/**
* The IDs generated for the requesting user in the specified space.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List ids;
/**
* This is always drive#generatedIds
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;
/**
* The type of file that can be created with these IDs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String space;
/**
* The IDs generated for the requesting user in the specified space.
* @return value or {@code null} for none
*/
public java.util.List getIds() {
return ids;
}
/**
* The IDs generated for the requesting user in the specified space.
* @param ids ids or {@code null} for none
*/
public GeneratedIds setIds(java.util.List ids) {
this.ids = ids;
return this;
}
/**
* This is always drive#generatedIds
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}
/**
* This is always drive#generatedIds
* @param kind kind or {@code null} for none
*/
public GeneratedIds setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* The type of file that can be created with these IDs.
* @return value or {@code null} for none
*/
public java.lang.String getSpace() {
return space;
}
/**
* The type of file that can be created with these IDs.
* @param space space or {@code null} for none
*/
public GeneratedIds setSpace(java.lang.String space) {
this.space = space;
return this;
}
@Override
public GeneratedIds set(String fieldName, Object value) {
return (GeneratedIds) super.set(fieldName, value);
}
@Override
public GeneratedIds clone() {
return (GeneratedIds) super.clone();
}
}