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

com.google.api.services.toolresults.model.Specification 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.toolresults.model;

/**
 * The details about how to run the execution.
 *
 * 

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 Cloud Tool Results 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 Specification extends com.google.api.client.json.GenericJson { /** * An Android mobile test execution specification. * The value may be {@code null}. */ @com.google.api.client.util.Key private AndroidTest androidTest; /** * An iOS mobile test execution specification. * The value may be {@code null}. */ @com.google.api.client.util.Key private IosTest iosTest; /** * An Android mobile test execution specification. * @return value or {@code null} for none */ public AndroidTest getAndroidTest() { return androidTest; } /** * An Android mobile test execution specification. * @param androidTest androidTest or {@code null} for none */ public Specification setAndroidTest(AndroidTest androidTest) { this.androidTest = androidTest; return this; } /** * An iOS mobile test execution specification. * @return value or {@code null} for none */ public IosTest getIosTest() { return iosTest; } /** * An iOS mobile test execution specification. * @param iosTest iosTest or {@code null} for none */ public Specification setIosTest(IosTest iosTest) { this.iosTest = iosTest; return this; } @Override public Specification set(String fieldName, Object value) { return (Specification) super.set(fieldName, value); } @Override public Specification clone() { return (Specification) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy