TradableSubscriptionRequest

@objc public class TradableSubscriptionRequest: NSObject

A request for subscribtion to the given broker in order to be able to trade through Tradable’s systems.

  • The id of the broker that the account is at.

    Declaration

    Swift

    @objc public let brokerId: Int
  • The login for the account.

    Declaration

    Swift

    @objc public let login: String
  • The password for the account.

    Declaration

    Swift

    @objc public let password: String
  • An e-mail provided for receiving subscription-related information.

    Declaration

    Swift

    @objc public let email: String
  • The Stripe token.

    Declaration

    Swift

    @objc public let stripeToken: String
  • 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, login: String, password: String, email: String, stripeToken: String)