BDKFileshareToolConfiguration

Objective-C


@interface BDKFileshareToolConfiguration : NSObject <NSCopying>

Swift

class FileshareToolConfiguration : NSObject, NSCopying

A value object holding the configuration values for the Bandyer “file share” tool. You can create this object when you want to enable or disable the “file share” tool in Bandyer calls.

  • A boolean flag indicating whether the file share tool is enabled or disabled.

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter=isEnabled) BOOL enabled;

    Swift

    var isEnabled: Bool { get }
  • Creates a new BDKFileshareToolConfiguration object instance with enabled property to false.

    Declaration

    Objective-C

    + (nonnull instancetype)disabled;

    Swift

    class func disabled() -> Self

    Return Value

    A new BDKFileshareToolConfiguration object instance with enabled property to false.

  • Creates a new BDKFileshareToolConfiguration object instance with enabled property to true.

    Declaration

    Objective-C

    + (nonnull instancetype)enabled;

    Swift

    class func enabled() -> Self

    Return Value

    A new BDKFileshareToolConfiguration object instance with enabled property to true.