Metadata

open class Metadata
extension User.Metadata: CustomStringConvertible

A pCloud user.

  • id

    The unique identifier of this user.

    Declaration

    Swift

    public let id: UInt64
  • The email address this user has registered with.

    Declaration

    Swift

    public let emailAddress: String
  • true if the user has verified their email address, false otherwise.

    Declaration

    Swift

    public let isEmailVerified: Bool
  • The size of this user’s content in bytes.

    Declaration

    Swift

    public let usedQuota: UInt64
  • The available storage space in bytes.

    Declaration

    Swift

    public let availableQuota: UInt64
  • Initializes a user with all fields of this class.

    Declaration

    Swift

    public init(id: UInt64, emailAddress: String, isEmailVerified: Bool, usedQuota: UInt64, availableQuota: UInt64)
  • Declaration

    Swift

    open var description: String { get }