Class: Google::Apis::VaultV1::MailExportOptions
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::MailExportOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vault_v1/classes.rb,
lib/google/apis/vault_v1/representations.rb,
lib/google/apis/vault_v1/representations.rb
Overview
Options for Gmail exports.
Instance Attribute Summary collapse
-
#export_format ⇒ String
The file format for exported messages.
-
#show_confidential_mode_content ⇒ Boolean
(also: #show_confidential_mode_content?)
To export confidential mode content, set to true.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MailExportOptions
constructor
A new instance of MailExportOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MailExportOptions
Returns a new instance of MailExportOptions.
1291 1292 1293 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1291 def initialize(**args) update!(**args) end |
Instance Attribute Details
#export_format ⇒ String
The file format for exported messages.
Corresponds to the JSON property exportFormat
1283 1284 1285 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1283 def export_format @export_format end |
#show_confidential_mode_content ⇒ Boolean Also known as: show_confidential_mode_content?
To export confidential mode content, set to true.
Corresponds to the JSON property showConfidentialModeContent
1288 1289 1290 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1288 def show_confidential_mode_content @show_confidential_mode_content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1296 1297 1298 1299 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1296 def update!(**args) @export_format = args[:export_format] if args.key?(:export_format) @show_confidential_mode_content = args[:show_confidential_mode_content] if args.key?(:show_confidential_mode_content) end |