Event Contact Defaults

Description

An event contact defaults object.

Properties

Property Description
adminModePin write-only

Access code assigned to this contact default for a given set of event contact defaults.

canHidePhotos

Whether the contact is allowed to hide photos for a given set of event contact defaults.

canTagPhotos

Whether the contact is allowed to tag photos for a given set of event contact defaults.

created read-only

The creation date of this event contact defaults object.

eventPhotoTags

An array of event photo tag objects for a given set of event contact defaults.

id read-only

The identifier for this event contact defaults object.

isDefault

Whether the current preset is the default for contacts.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

name

A descriptive name for these event contact defaults settings.

type

The type of object represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "An event contact defaults object.",
  "properties": {
    "adminModePin": {
      "description": "Access code assigned to this contact default for a given set of\nevent contact defaults.",
      "maxLength": 30,
      "minLength": 6,
      "type": "string",
      "writeOnly": true
    },
    "canHidePhotos": {
      "description": "Whether the contact is allowed to hide photos for a given set of\nevent contact defaults.",
      "type": "boolean"
    },
    "canTagPhotos": {
      "description": "Whether the contact is allowed to tag photos for a given set of\nevent contact defaults.",
      "type": "boolean"
    },
    "created": {
      "description": "The creation date of this event contact defaults object.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "eventPhotoTags": {
      "description": "An array of event photo tag objects for a given set of event contact\ndefaults.",
      "items": {
        "$ref": "#/components/schemas/EventContactDefaultsEventPhotoTag"
      },
      "type": "array"
    },
    "id": {
      "description": "The identifier for this event contact defaults object.",
      "readOnly": true,
      "type": "number"
    },
    "isDefault": {
      "description": "Whether the current preset is the default for contacts.",
      "type": "boolean"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "name": {
      "description": "A descriptive name for these event contact defaults settings.",
      "maxLength": 100,
      "type": "string"
    },
    "type": {
      "description": "The type of object represented.",
      "enum": [
        "event-contact-defaults"
      ],
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "title": "Event Contact Defaults",
  "type": "object"
}