forked from cloudconvert/cloudconvert-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExportOpenStackCreateRequest.cs
More file actions
38 lines (29 loc) · 963 Bytes
/
ExportOpenStackCreateRequest.cs
File metadata and controls
38 lines (29 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.Text.Json.Serialization;
namespace CloudConvert.API.Models.ExportOperations
{
public class ExportOpenStackCreateRequest
{
[JsonPropertyName("operation")]
public string Operation { get; } = "export/openstack";
/// <summary>
/// The input task name(s) for this task.
/// input: string | string[];
/// </summary>
[JsonPropertyName("input")]
public object Input { get; set; }
[JsonPropertyName("auth_url")]
public string Auth_Url { get; set; }
[JsonPropertyName("username")]
public string Username { get; set; }
[JsonPropertyName("password")]
public string Password { get; set; }
[JsonPropertyName("region")]
public string Region { get; set; }
[JsonPropertyName("container")]
public string Container { get; set; }
[JsonPropertyName("file")]
public string File { get; set; }
[JsonPropertyName("file_prefix")]
public string FilePrefix { get; set; }
}
}