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

com.google.api.services.androidpublisher.model.Listing Maven / Gradle / Ivy

There is a newer version: v3-rev20241217-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://code.google.com/p/google-apis-client-generator/
 * (build: 2014-07-22 21:53:01 UTC)
 * on 2014-09-08 at 14:04:04 UTC 
 * Modify at your own risk.
 */

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

/**
 * Model definition for Listing.
 *
 * 

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 Play Android Developer 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 Listing extends com.google.api.client.json.GenericJson { /** * Full description of the app; this may be up to 4000 characters in length. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String fullDescription; /** * Language localization code (for example, "de-AT" for Austrian German). * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String language; /** * Short description of the app (previously known as promo text); this may be up to 80 characters * in length. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String shortDescription; /** * App's localized title. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String title; /** * URL of a promotional YouTube video for the app. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String video; /** * Full description of the app; this may be up to 4000 characters in length. * @return value or {@code null} for none */ public java.lang.String getFullDescription() { return fullDescription; } /** * Full description of the app; this may be up to 4000 characters in length. * @param fullDescription fullDescription or {@code null} for none */ public Listing setFullDescription(java.lang.String fullDescription) { this.fullDescription = fullDescription; return this; } /** * Language localization code (for example, "de-AT" for Austrian German). * @return value or {@code null} for none */ public java.lang.String getLanguage() { return language; } /** * Language localization code (for example, "de-AT" for Austrian German). * @param language language or {@code null} for none */ public Listing setLanguage(java.lang.String language) { this.language = language; return this; } /** * Short description of the app (previously known as promo text); this may be up to 80 characters * in length. * @return value or {@code null} for none */ public java.lang.String getShortDescription() { return shortDescription; } /** * Short description of the app (previously known as promo text); this may be up to 80 characters * in length. * @param shortDescription shortDescription or {@code null} for none */ public Listing setShortDescription(java.lang.String shortDescription) { this.shortDescription = shortDescription; return this; } /** * App's localized title. * @return value or {@code null} for none */ public java.lang.String getTitle() { return title; } /** * App's localized title. * @param title title or {@code null} for none */ public Listing setTitle(java.lang.String title) { this.title = title; return this; } /** * URL of a promotional YouTube video for the app. * @return value or {@code null} for none */ public java.lang.String getVideo() { return video; } /** * URL of a promotional YouTube video for the app. * @param video video or {@code null} for none */ public Listing setVideo(java.lang.String video) { this.video = video; return this; } @Override public Listing set(String fieldName, Object value) { return (Listing) super.set(fieldName, value); } @Override public Listing clone() { return (Listing) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy