class Google::Apis::VaultV1::HeldGroupsQuery
Query
options for group holds.
Attributes
end_time[RW]
The end time for the query. Specify in GMT. The value is rounded to 12 AM on the specified date. Corresponds to the JSON property `endTime` @return [String]
start_time[RW]
The start time for the query. Specify in GMT. The value is rounded to 12 AM on the specified date. Corresponds to the JSON property `startTime` @return [String]
terms[RW]
The [search operators](support.google.com/vault/answer/2474474) used to refine the messages covered by the hold. Corresponds to the JSON property `terms` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 912 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/vault_v1/classes.rb, line 917 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