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

com.google.api.services.youtubereporting.model.GdataObjectId Maven / Gradle / Ivy

There is a newer version: v1-rev20230704-2.0.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: 2018-05-04 17:28:03 UTC)
 * on 2018-08-23 at 14:15:14 UTC 
 * Modify at your own risk.
 */

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

/**
 * gdata
 *
 * 

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 YouTube Reporting 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 GdataObjectId extends com.google.api.client.json.GenericJson { /** * gdata * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String bucketName; /** * gdata * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long generation; /** * gdata * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String objectName; /** * gdata * @return value or {@code null} for none */ public java.lang.String getBucketName() { return bucketName; } /** * gdata * @param bucketName bucketName or {@code null} for none */ public GdataObjectId setBucketName(java.lang.String bucketName) { this.bucketName = bucketName; return this; } /** * gdata * @return value or {@code null} for none */ public java.lang.Long getGeneration() { return generation; } /** * gdata * @param generation generation or {@code null} for none */ public GdataObjectId setGeneration(java.lang.Long generation) { this.generation = generation; return this; } /** * gdata * @return value or {@code null} for none */ public java.lang.String getObjectName() { return objectName; } /** * gdata * @param objectName objectName or {@code null} for none */ public GdataObjectId setObjectName(java.lang.String objectName) { this.objectName = objectName; return this; } @Override public GdataObjectId set(String fieldName, Object value) { return (GdataObjectId) super.set(fieldName, value); } @Override public GdataObjectId clone() { return (GdataObjectId) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy