com.google.api.servicecontrol.v1.QuotaErrorOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of endpoints-management-protos Show documentation
Show all versions of endpoints-management-protos Show documentation
Contains the generated protocol buffer surface used by Endpoints
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/servicecontrol/v1/quota_controller.proto
package com.google.api.servicecontrol.v1;
public interface QuotaErrorOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.servicecontrol.v1.QuotaError)
com.google.protobuf.MessageOrBuilder {
/**
*
* Error code.
*
*
* optional .google.api.servicecontrol.v1.QuotaError.Code code = 1;
*/
int getCodeValue();
/**
*
* Error code.
*
*
* optional .google.api.servicecontrol.v1.QuotaError.Code code = 1;
*/
com.google.api.servicecontrol.v1.QuotaError.Code getCode();
/**
*
* Subject to whom this error applies. See the specific enum for more details
* on this field. For example, "clientip:<ip address of client>" or
* "project:<Google developer project id>".
*
*
* optional string subject = 2;
*/
java.lang.String getSubject();
/**
*
* Subject to whom this error applies. See the specific enum for more details
* on this field. For example, "clientip:<ip address of client>" or
* "project:<Google developer project id>".
*
*
* optional string subject = 2;
*/
com.google.protobuf.ByteString
getSubjectBytes();
/**
*
* Free-form text that provides details on the cause of the error.
*
*
* optional string description = 3;
*/
java.lang.String getDescription();
/**
*
* Free-form text that provides details on the cause of the error.
*
*
* optional string description = 3;
*/
com.google.protobuf.ByteString
getDescriptionBytes();
}