BDKEnvironment

@interface BDKEnvironment : NSObject <NSCopying>

The environment in which the sdk will run.

  • Returns the environment object used in production.

    Declaration

    Objective-C

    @property (readonly, nonatomic, class) BDKEnvironment *_Nonnull production;

    Swift

    class var production: BDKEnvironment { get }
  • Returns the environment object used in sandbox.

    Declaration

    Objective-C

    @property (readonly, nonatomic, class) BDKEnvironment *_Nonnull sandbox;

    Swift

    class var sandbox: BDKEnvironment { get }
  • Returns the name of the environment.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSString *_Nonnull name;

    Swift

    var name: String { get }