class Google::Apis::DlpV2::GooglePrivacyDlpV2Range

Generic half-open interval [start, end)

Attributes

end[RW]

Index of the last character of the range (exclusive). Corresponds to the JSON property `end` @return [Fixnum]

start[RW]

Index of the first character of the range (inclusive). Corresponds to the JSON property `start` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 4912
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 4917
def update!(**args)
  @end = args[:end] if args.key?(:end)
  @start = args[:start] if args.key?(:start)
end