Face

public struct Face : Codable

Face model

  • id

    Face identfifier

    Declaration

    Swift

    public let id: String?
  • User-defined external ID for the face. External ID can be used to link several faces which belong to one person. Default is “”.

    Declaration

    Swift

    public let externalID: String?
  • User data associated with face. Default is “”.

    Declaration

    Swift

    public let userData: String?
  • Comma-separated list of list IDs which contain the face.

    Declaration

    Swift

    public let lists: [String]?
  • Time of face creation

    Declaration

    Swift

    public let createTime: String?
  • Initialize face

    Declaration

    Swift

    public init(id: String?, externalID: String?, userData: String?, lists: [String]?, createTime: String)

    Parameters

    id

    face identfifier

    externalID

    user-defined external ID for the face

    userData

    user data associated with face

    lists

    comma-separated list of list IDs which contain the face

    createTime

    time of face creation