PlanetKitCCParam

public class PlanetKitCCParam : NSObject

A class representing a PlanetKitCCParam object.

  • The original string of CC parameter.

    Declaration

    Swift

    @objc
    public let ccParam: String
  • The peer ID of the CC parameter.

    Declaration

    Swift

    @objc
    public var peerId: String? { get }
  • The service ID of the CC parameter.

    Declaration

    Swift

    @objc
    public var serviceId: String? { get }
  • The media type of the CC parameter.

    Declaration

    Swift

    @objc
    public var mediaType: PlanetKitMediaType { get }
  • Initializes a new PlanetKitCCParam object with the specified CC parameter.

    Declaration

    Swift

    @objc
    public init?(ccParam: String)

    Parameters

    ccParam

    The CC parameter.

    Return Value

    An initialized PlanetKitCCParam object, or nil if the initialization fails.