ModifyTemplateError

public enum ModifyTemplateError : CustomStringConvertible, JSONRepresentable

The ModifyTemplateError 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
  • A property field key with that name already exists in the template.

    Declaration

    Swift

    case conflictingPropertyNames
  • There are too many properties in the changed template. The maximum number of properties per template is 32.

    Declaration

    Swift

    case tooManyProperties
  • There are too many templates for the team.

    Declaration

    Swift

    case tooManyTemplates
  • The template name, description or one or more of the property field keys is too large.

    Declaration

    Swift

    case templateAttributeTooLarge
  • Declaration

    Swift

    public var description: String { get }