Class: Google::Apis::VaultV1::HeldMailQuery

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

Overview

Query options for mail holds.

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) ⇒ HeldMailQuery

Returns a new instance of HeldMailQuery



248
249
250
# File 'generated/google/apis/vault_v1/classes.rb', line 248

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

Instance Attribute Details

#end_timeString

The end date range for the search query. These timestamps are in GMT and rounded down to the start of the given date. Corresponds to the JSON property endTime

Returns:

  • (String)


235
236
237
# File 'generated/google/apis/vault_v1/classes.rb', line 235

def end_time
  @end_time
end

#start_timeString

The start date range for the search query. These timestamps are in GMT and rounded down to the start of the given date. Corresponds to the JSON property startTime

Returns:

  • (String)


241
242
243
# File 'generated/google/apis/vault_v1/classes.rb', line 241

def start_time
  @start_time
end

#termsString

The search terms for the hold. Corresponds to the JSON property terms

Returns:

  • (String)


246
247
248
# File 'generated/google/apis/vault_v1/classes.rb', line 246

def terms
  @terms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



253
254
255
256
257
# File 'generated/google/apis/vault_v1/classes.rb', line 253

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