Class StatusProto
Wire-format for a Status object
Implements
Inherited Members
Namespace: Google.Apis.FirebaseManagement.v1beta1.Data
Assembly: Google.Apis.FirebaseManagement.v1beta1.dll
Syntax
public class StatusProto : IDirectResponseSchema
Properties
CanonicalCode
The canonical error code (see codes.proto) that most closely corresponds to this status. This may be missing, and in the common case of the generic space, it definitely will be.
Declaration
[JsonProperty("canonicalCode")]
public virtual int? CanonicalCode { get; set; }
Property Value
Type | Description |
---|---|
int? |
Code
Numeric code drawn from the space specified below. Often, this is the canonical error space, and code is drawn from google3/util/task/codes.proto
Declaration
[JsonProperty("code")]
public virtual int? Code { get; set; }
Property Value
Type | Description |
---|---|
int? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Message
Detail message
Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
MessageSet
message_set associates an arbitrary proto message with the status.
Declaration
[JsonProperty("messageSet")]
public virtual MessageSet MessageSet { get; set; }
Property Value
Type | Description |
---|---|
MessageSet |
Space
The following are usually only present when code != 0 Space to which this status belongs
Declaration
[JsonProperty("space")]
public virtual string Space { get; set; }
Property Value
Type | Description |
---|---|
string |