EditDocumentUserMetadataPeriodDto

data class EditDocumentUserMetadataPeriodDto(unit: String?, duration: Int?)

Parameters

unit

To unset the value pass an empty string. Otherwise must be a valid PeriodUnitEnum value. Document must have the ''documentDate'' set or it should be supplied as another edit parameter within the same request.

duration

To unset pass null. Positive number of period units which defines the total period duration. This parameter should be used together with the 'unit' parameter. Document must have the ''documentDate'' set or it should be supplied as another edit parameter within the same request.

Constructors

EditDocumentUserMetadataPeriodDto
Link copied to clipboard
fun EditDocumentUserMetadataPeriodDto(unit: String? = null, duration: Int? = null)
To unset the value pass an empty string.

Properties

duration
Link copied to clipboard
@SerializedName(value = duration)
val duration: Int? = null
To unset pass null.
unit
Link copied to clipboard
@SerializedName(value = unit)
val unit: String? = null
To unset the value pass an empty string.