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

com.ibm.watson.visual_recognition.v4.model.Error Maven / Gradle / Ivy

There is a newer version: 9.3.1
Show newest version
/*
 * (C) Copyright IBM Corp. 2019, 2020.
 *
 * 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.ibm.watson.visual_recognition.v4.model;

import com.google.gson.annotations.SerializedName;
import com.ibm.cloud.sdk.core.service.model.GenericModel;

/** Details about an error. */
public class Error extends GenericModel {

  /** Identifier of the problem. */
  public interface Code {
    /** invalid_field. */
    String INVALID_FIELD = "invalid_field";
    /** invalid_header. */
    String INVALID_HEADER = "invalid_header";
    /** invalid_method. */
    String INVALID_METHOD = "invalid_method";
    /** missing_field. */
    String MISSING_FIELD = "missing_field";
    /** server_error. */
    String SERVER_ERROR = "server_error";
  }

  protected String code;
  protected String message;

  @SerializedName("more_info")
  protected String moreInfo;

  protected ErrorTarget target;

  /**
   * Gets the code.
   *
   * 

Identifier of the problem. * * @return the code */ public String getCode() { return code; } /** * Gets the message. * *

An explanation of the problem with possible solutions. * * @return the message */ public String getMessage() { return message; } /** * Gets the moreInfo. * *

A URL for more information about the solution. * * @return the moreInfo */ public String getMoreInfo() { return moreInfo; } /** * Gets the target. * *

Details about the specific area of the problem. * * @return the target */ public ErrorTarget getTarget() { return target; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy