AddPropertiesError

public enum AddPropertiesError : CustomStringConvertible, JSONRepresentable

The AddPropertiesError union

  • Template does not exist for the given identifier.

    Declaration

    Swift

    case templateNotFound(String)
  • You do not have permission to modify this template.

    Declaration

    Swift

    case restrictedContent
  • An unspecified error.

    Declaration

    Swift

    case other
  • An unspecified error.

    Declaration

    Swift

    case path(FileProperties.LookupError)
  • This folder cannot be tagged. Tagging folders is not supported for team-owned templates.

    Declaration

    Swift

    case unsupportedFolder
  • One or more of the supplied property field values is too large.

    Declaration

    Swift

    case propertyFieldTooLarge
  • One or more of the supplied property fields does not conform to the template specifications.

    Declaration

    Swift

    case doesNotFitTemplate
  • There are 2 or more property groups referring to the same templates in the input.

    Declaration

    Swift

    case duplicatePropertyGroups
  • A property group associated with this template and file already exists.

    Declaration

    Swift

    case propertyGroupAlreadyExists
  • Declaration

    Swift

    public var description: String { get }