SignRequestPrefillTag
public class SignRequestPrefillTag : BoxInnerModel
Prefill tags are used to prefill placeholders with signer input data. Only one value field can be included.
-
This references the ID of a specific tag contained in a file of the sign request
Declaration
Swift
public let documentTagId: String?
-
Text prefill value
Declaration
Swift
public let textValue: String?
-
Checkbox prefill value
Declaration
Swift
public let checkboxValue: Bool?
-
Date prefill value
Declaration
Swift
public let dateValue: Date?
-
Initializer.
Declaration
Swift
public init( documentTagId: String?, textValue: String? )
Parameters
documentTagId
Id of the tag.
textValue
The text prefill value.
-
Declaration
Swift
public init( documentTagId: String?, checkboxValue: Bool? )
Parameters
documentTagId
Id of the tag.
checkboxValue
The checkbox prefill value.
-
Declaration
Swift
public init( documentTagId: String?, dateValue: Date? )
Parameters
documentTagId
Id of the tag.
dateValue
The date prefill value.