-
Notifications
You must be signed in to change notification settings - Fork 25
/
FileUploadInfo.cs
86 lines (76 loc) · 2.8 KB
/
FileUploadInfo.cs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// <auto-generated>
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace Microsoft.Bot.Schema.Teams
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// Information about the file to be uploaded.
/// </summary>
public partial class FileUploadInfo
{
/// <summary>
/// Initializes a new instance of the FileUploadInfo class.
/// </summary>
public FileUploadInfo()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the FileUploadInfo class.
/// </summary>
/// <param name="name">Name of the file.</param>
/// <param name="uploadUrl">URL to an upload session that the bot can
/// use to set the file contents.</param>
/// <param name="contentUrl">URL to file.</param>
/// <param name="uniqueId">ID that uniquely identifies the
/// file.</param>
/// <param name="fileType">Type of the file.</param>
public FileUploadInfo(string name = default(string), string uploadUrl = default(string), string contentUrl = default(string), string uniqueId = default(string), string fileType = default(string))
{
Name = name;
UploadUrl = uploadUrl;
ContentUrl = contentUrl;
UniqueId = uniqueId;
FileType = fileType;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets name of the file.
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// Gets or sets URL to an upload session that the bot can use to set
/// the file contents.
/// </summary>
[JsonProperty(PropertyName = "uploadUrl")]
public string UploadUrl { get; set; }
/// <summary>
/// Gets or sets URL to file.
/// </summary>
[JsonProperty(PropertyName = "contentUrl")]
public string ContentUrl { get; set; }
/// <summary>
/// Gets or sets ID that uniquely identifies the file.
/// </summary>
[JsonProperty(PropertyName = "uniqueId")]
public string UniqueId { get; set; }
/// <summary>
/// Gets or sets type of the file.
/// </summary>
[JsonProperty(PropertyName = "fileType")]
public string FileType { get; set; }
}
}