// Copyright 2016 Google Inc. All Rights Reserved. // // 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. package com.google.api.ads.adwords.jaxws.v201609.cm; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for VideoError.Reason. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="VideoError.Reason"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="INVALID_VIDEO"/> * <enumeration value="STORAGE_ERROR"/> * <enumeration value="BAD_REQUEST"/> * <enumeration value="ERROR_GENERATING_STREAMING_URL"/> * <enumeration value="UNEXPECTED_SIZE"/> * <enumeration value="SERVER_ERROR"/> * <enumeration value="FILE_TOO_LARGE"/> * <enumeration value="VIDEO_PROCESSING_ERROR"/> * <enumeration value="INVALID_INPUT"/> * <enumeration value="PROBLEM_READING_FILE"/> * <enumeration value="INVALID_ISCI"/> * <enumeration value="INVALID_AD_ID"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "VideoError.Reason") @XmlEnum public enum VideoErrorReason { /** * * Invalid video. * * */ INVALID_VIDEO, /** * * Storage error. * * */ STORAGE_ERROR, /** * * Bad request. * * */ BAD_REQUEST, /** * * Server error. * * */ ERROR_GENERATING_STREAMING_URL, /** * * Unexpected size. * * */ UNEXPECTED_SIZE, /** * * Server error. * * */ SERVER_ERROR, /** * * File too large. * * */ FILE_TOO_LARGE, /** * * Video processing error. * * */ VIDEO_PROCESSING_ERROR, /** * * Invalid input. * * */ INVALID_INPUT, /** * * Problem reading file. * * */ PROBLEM_READING_FILE, /** * * Invalid ISCI. * * */ INVALID_ISCI, /** * * Invalid AD-ID. * * */ INVALID_AD_ID; public String value() { return name(); } public static VideoErrorReason fromValue(String v) { return valueOf(v); } }