Class: Google::Apis::VaultV1::HeldMailQuery
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::HeldMailQuery
- 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
-
#end_time ⇒ String
The end time range for the search query.
-
#start_time ⇒ String
The start time range for the search query.
-
#terms ⇒ String
The search terms for the hold.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HeldMailQuery
constructor
A new instance of HeldMailQuery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HeldMailQuery
Returns a new instance of HeldMailQuery.
943 944 945 |
# File 'generated/google/apis/vault_v1/classes.rb', line 943 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
The end time 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
930 931 932 |
# File 'generated/google/apis/vault_v1/classes.rb', line 930 def end_time @end_time end |
#start_time ⇒ String
The start time 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
936 937 938 |
# File 'generated/google/apis/vault_v1/classes.rb', line 936 def start_time @start_time end |
#terms ⇒ String
The search terms for the hold.
Corresponds to the JSON property terms
941 942 943 |
# File 'generated/google/apis/vault_v1/classes.rb', line 941 def terms @terms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
948 949 950 951 952 |
# File 'generated/google/apis/vault_v1/classes.rb', line 948 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 |