Skip to content

Commit

Permalink
Replace some UUID leftovers with User (AppContext)
Browse files Browse the repository at this point in the history
  • Loading branch information
jguz-pubnub committed Dec 3, 2024
1 parent 81f8c0a commit 48786ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/PubNub/Models/PubNubUserMetadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ import Foundation
@available(*, deprecated, message: "Use `PubNubUserMetadata` instead.")
public typealias PubNubUUIDMetadata = PubNubUserMetadata

/// A object capable of representing PubNub UUID Metadata
/// A object capable of representing PubNub User Metadata
public protocol PubNubUserMetadata {
/// The unique identifier of the UUID
/// The unique identifier of the User
var metadataId: String { get }
/// The name of the UUID
/// The name of the User
var name: String? { get set }
/// The classification of UUIDMetadata
/// The classification of the User
var type: String? { get set }
/// The current state of the UUIDMetadata
/// The current state of the User
var status: String? { get set }
/// The external identifier for the object
var externalId: String? { get set }
Expand Down

0 comments on commit 48786ee

Please sign in to comment.