Face
public struct Face : Codable
Face model
-
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
idface identfifier
externalIDuser-defined external ID for the face
userDatauser data associated with face
listscomma-separated list of list IDs which contain the face
createTimetime of face creation
Face Structure Reference