|
| 1 | +// Template Source: BaseEntity.java.tt |
| 2 | +// ------------------------------------------------------------------------------ |
| 3 | +// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 4 | +// ------------------------------------------------------------------------------ |
| 5 | + |
| 6 | +package com.microsoft.graph.ediscovery.models; |
| 7 | +import com.microsoft.graph.serializer.ISerializer; |
| 8 | +import com.microsoft.graph.serializer.IJsonBackedObject; |
| 9 | +import com.microsoft.graph.serializer.AdditionalDataManager; |
| 10 | +import java.util.EnumSet; |
| 11 | +import com.microsoft.graph.ediscovery.models.ExportOptions; |
| 12 | +import com.microsoft.graph.ediscovery.models.ExportFileStructure; |
| 13 | +import com.microsoft.graph.ediscovery.models.ReviewSet; |
| 14 | +import com.microsoft.graph.ediscovery.models.CaseOperation; |
| 15 | + |
| 16 | + |
| 17 | +import com.google.gson.JsonObject; |
| 18 | +import com.google.gson.annotations.SerializedName; |
| 19 | +import com.google.gson.annotations.Expose; |
| 20 | +import javax.annotation.Nullable; |
| 21 | +import javax.annotation.Nonnull; |
| 22 | + |
| 23 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 24 | + |
| 25 | +/** |
| 26 | + * The class for the Case Export Operation. |
| 27 | + */ |
| 28 | +public class CaseExportOperation extends CaseOperation implements IJsonBackedObject { |
| 29 | + |
| 30 | + |
| 31 | + /** |
| 32 | + * The Azure Blob Container. |
| 33 | + * The name of the Azure storage location where the export will be stored. This only applies to exports stored in your own Azure storage location. |
| 34 | + */ |
| 35 | + @SerializedName(value = "azureBlobContainer", alternate = {"AzureBlobContainer"}) |
| 36 | + @Expose |
| 37 | + @Nullable |
| 38 | + public String azureBlobContainer; |
| 39 | + |
| 40 | + /** |
| 41 | + * The Azure Blob Token. |
| 42 | + * The SAS token for the Azure storage location. This only applies to exports stored in your own Azure storage location. |
| 43 | + */ |
| 44 | + @SerializedName(value = "azureBlobToken", alternate = {"AzureBlobToken"}) |
| 45 | + @Expose |
| 46 | + @Nullable |
| 47 | + public String azureBlobToken; |
| 48 | + |
| 49 | + /** |
| 50 | + * The Description. |
| 51 | + * The description provided for the export. |
| 52 | + */ |
| 53 | + @SerializedName(value = "description", alternate = {"Description"}) |
| 54 | + @Expose |
| 55 | + @Nullable |
| 56 | + public String description; |
| 57 | + |
| 58 | + /** |
| 59 | + * The Export Options. |
| 60 | + * The options provided for the export. For more details, see reviewSet: export. Possible values are: originalFiles, text, pdfReplacement, fileInfo, tags. |
| 61 | + */ |
| 62 | + @SerializedName(value = "exportOptions", alternate = {"ExportOptions"}) |
| 63 | + @Expose |
| 64 | + @Nullable |
| 65 | + public EnumSet<ExportOptions> exportOptions; |
| 66 | + |
| 67 | + /** |
| 68 | + * The Export Structure. |
| 69 | + * The options provided that specify the structure of the export. For more details, see reviewSet: export. Possible values are: none, directory, pst. |
| 70 | + */ |
| 71 | + @SerializedName(value = "exportStructure", alternate = {"ExportStructure"}) |
| 72 | + @Expose |
| 73 | + @Nullable |
| 74 | + public ExportFileStructure exportStructure; |
| 75 | + |
| 76 | + /** |
| 77 | + * The Output Folder Id. |
| 78 | + * |
| 79 | + */ |
| 80 | + @SerializedName(value = "outputFolderId", alternate = {"OutputFolderId"}) |
| 81 | + @Expose |
| 82 | + @Nullable |
| 83 | + public String outputFolderId; |
| 84 | + |
| 85 | + /** |
| 86 | + * The Output Name. |
| 87 | + * The name provided for the export. |
| 88 | + */ |
| 89 | + @SerializedName(value = "outputName", alternate = {"OutputName"}) |
| 90 | + @Expose |
| 91 | + @Nullable |
| 92 | + public String outputName; |
| 93 | + |
| 94 | + /** |
| 95 | + * The Review Set. |
| 96 | + * The review set the content is being exported from. |
| 97 | + */ |
| 98 | + @SerializedName(value = "reviewSet", alternate = {"ReviewSet"}) |
| 99 | + @Expose |
| 100 | + @Nullable |
| 101 | + public ReviewSet reviewSet; |
| 102 | + |
| 103 | + |
| 104 | + /** |
| 105 | + * Sets the raw JSON object |
| 106 | + * |
| 107 | + * @param serializer the serializer |
| 108 | + * @param json the JSON object to set this object to |
| 109 | + */ |
| 110 | + public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { |
| 111 | + |
| 112 | + } |
| 113 | +} |
0 commit comments