Class: Google::Apis::CloudtraceV2::TruncatableString
- Inherits:
-
Object
- Object
- Google::Apis::CloudtraceV2::TruncatableString
- Defined in:
- generated/google/apis/cloudtrace_v2/classes.rb,
generated/google/apis/cloudtrace_v2/representations.rb,
generated/google/apis/cloudtrace_v2/representations.rb
Overview
Represents a string that might be shortened to a specified length.
Instance Attribute Summary collapse
-
#truncated_byte_count ⇒ Fixnum
The number of bytes removed from the original string.
-
#value ⇒ String
The shortened string.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TruncatableString
constructor
A new instance of TruncatableString.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ TruncatableString
Returns a new instance of TruncatableString
713 714 715 |
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 713 def initialize(**args) update!(**args) end |
Instance Attribute Details
#truncated_byte_count ⇒ Fixnum
The number of bytes removed from the original string. If this
value is 0, then the string was not shortened.
Corresponds to the JSON property truncatedByteCount
701 702 703 |
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 701 def truncated_byte_count @truncated_byte_count end |
#value ⇒ String
The shortened string. For example, if the original string was 500
bytes long and the limit of the string was 128 bytes, then this
value contains the first 128 bytes of the 500-byte string. Note that
truncation always happens on the character boundary, to ensure that
truncated string is still valid UTF8. In case of multi-byte characters,
size of truncated string can be less than truncation limit.
Corresponds to the JSON property value
711 712 713 |
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 711 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
718 719 720 721 |
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 718 def update!(**args) @truncated_byte_count = args[:truncated_byte_count] if args.key?(:truncated_byte_count) @value = args[:value] if args.key?(:value) end |