Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Range

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

Generic half-open interval [start, end)

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2Range

Returns a new instance of GooglePrivacyDlpV2Range.



4586
4587
4588
# File 'generated/google/apis/dlp_v2/classes.rb', line 4586

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#endFixnum

Index of the last character of the range (exclusive). Corresponds to the JSON property end

Returns:

  • (Fixnum)


4579
4580
4581
# File 'generated/google/apis/dlp_v2/classes.rb', line 4579

def end
  @end
end

#startFixnum

Index of the first character of the range (inclusive). Corresponds to the JSON property start

Returns:

  • (Fixnum)


4584
4585
4586
# File 'generated/google/apis/dlp_v2/classes.rb', line 4584

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4591
4592
4593
4594
# File 'generated/google/apis/dlp_v2/classes.rb', line 4591

def update!(**args)
  @end = args[:end] if args.key?(:end)
  @start = args[:start] if args.key?(:start)
end