Class TruncatableString
Represents a string that might be shortened to a specified length.
Implements
Inherited Members
Namespace: Google.Apis.CloudTrace.v2.Data
Assembly: Google.Apis.CloudTrace.v2.dll
Syntax
public class TruncatableString : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
TruncatedByteCount
The number of bytes removed from the original string. If this value is 0, then the string was not shortened.
Declaration
[JsonProperty("truncatedByteCount")]
public virtual int? TruncatedByteCount { get; set; }
Property Value
Type | Description |
---|---|
int? |
Value
The shortened string. For example, if the original string is 500 bytes long and the limit of the string is
128 bytes, then value
contains the first 128 bytes of the 500-byte string. Truncation always happens on a
UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened
string might be less than the size limit.
Declaration
[JsonProperty("value")]
public virtual string Value { get; set; }
Property Value
Type | Description |
---|---|
string |