BDKJoinURLIntent

Objective-C

@interface BDKJoinURLIntent : NSObject <BDKIntent>

Swift

class BDKJoinURLIntent : NSObject, BDKIntent

Represents the intent of starting a call from an URL.

  • url

    The url provided during initialization

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSURL *_Nonnull url;

    Swift

    var url: URL { get }
  • Initialize an intent with the URL provided as argument.

    Throws an NSInvalidArgumentException exception if a nil url is provided.

    Declaration

    Objective-C

    + (nonnull instancetype)intentWithURL:(nonnull NSURL *)url;

    Swift

    convenience init(url: URL)

    Parameters

    url

    The url.

    Return Value

    An initialized intent.