GroupId
public class GroupId : SdkObject
extension GroupId: CustomStringConvertible
extension GroupId: Equatable
ID of a group.
Must be unique within the group’s segment and match the regex ^[a-zA-Z0-9_.$#|@/:;=+'-]+$
.
-
Constructs a
GroupId
from the provided String.Fails if the provided ID is not valid.
Declaration
Swift
public convenience init?(_ id: String)
-
ID of the group
Declaration
Swift
public lazy var id: String { get set }
-
Declaration
Swift
public var description: String { get }
-
Declaration
Swift
public static func == (lhs: GroupId, rhs: GroupId) -> Bool