Class AttachmentInfo
Attachment Info.
Inheritance
System.Object
AttachmentInfo
Namespace: BoldSign.Api.Model
Assembly: BoldSign.Api.dll
Syntax
public class AttachmentInfo : object
Constructors
| Improve this Doc View SourceAttachmentInfo()
Initializes a new instance of the AttachmentInfo class.
Declaration
protected AttachmentInfo()
AttachmentInfo(String, String, List<String>)
Initializes a new instance of the AttachmentInfo class.
Declaration
public AttachmentInfo(string title = null, string description = null, List<string> acceptedFileTypes = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | title | placeHolder. |
System.String | description | description. |
List<System.String> | acceptedFileTypes | acceptedFileTypes. |
AttachmentInfo(String, String, String)
Initializes a new instance of the AttachmentInfo class.
Declaration
public AttachmentInfo(string title = null, string description = null, string allowedFileTypes = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | title | placeHolder. |
System.String | description | description. |
System.String | allowedFileTypes | allowedFileTypes. |
Properties
| Improve this Doc View SourceAcceptedFileTypes
Gets or sets the accepted file types such as DOCUMENT, PDF and IMAGE. Example: ["PDF", "DOCUMENT", "IMAGE"].
Declaration
public List<string> AcceptedFileTypes { get; set; }
Property Value
Type | Description |
---|---|
List<System.String> |
AllowedFileTypes
Gets or sets the allowed file types such as document, pdf and image. Example: "document,image".
Declaration
public string AllowedFileTypes { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Title
Gets or sets the title.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |