DocumentName

public class DocumentName : SdkObject
extension DocumentName: Equatable

Name of a document.

The name should be human-readable and does not have to be unique.

Must be between 1 and 100 characters long.

  • Constructs a DocumentName from a String.

    Fails if the string contains invalid characters.

    Declaration

    Swift

    public convenience init?(_ name: String)
  • Name of the document

    Declaration

    Swift

    public lazy var name: String { get set }
  • Declaration

    Swift

    public static func == (lhs: DocumentName, rhs: DocumentName) -> Bool