TradableSubscriptionResponse
@objc public class TradableSubscriptionResponse: NSObject
A response received when making changes pertaining to a subscription.
-
The id of the broker that was subscribed to.
Declaration
Swift
@objc public let brokerId: Int
-
The login identifying the subscribed user.
Declaration
Swift
@objc public let brokerLogin: String
-
The e-mail provided for receiving subscription-related information.
Declaration
Swift
@objc public let email: String
-
The current status of the subscription.
Declaration
Swift
@objc public let status: TradableSubscriptionStatus
-
Simple description of this object.
Declaration
Swift
public override var description: String
-
Creates an object with given parameters.
Declaration
Swift
@objc public init(brokerId: Int, brokerLogin: String, email: String, status: TradableSubscriptionStatus)