SCCameraKitLensRemoteApiServiceCallStatus

Objective-C

enum SCCameraKitLensRemoteApiServiceCallStatus : NSInteger {}

Swift

enum LensRemoteApiServiceCallStatus : Int, @unchecked Sendable

Describes the status of the call for the request handled by a remote api service.

  • Request was ignored typically due to a remote api service not interested in handling such request to allow other services to handle the same request.

    Declaration

    Objective-C

    SCCameraKitLensRemoteApiServiceCallStatusIgnored

    Swift

    case ignored = 0
  • Request was received but one or more responses are yet to be sent.

    Declaration

    Objective-C

    SCCameraKitLensRemoteApiServiceCallStatusOngoing

    Swift

    case ongoing = 1
  • Request was received and a single response was sent indicating that the call is complete.

    Declaration

    Objective-C

    SCCameraKitLensRemoteApiServiceCallStatusAnswered

    Swift

    case answered = 2