Customizing the List of Other Numbers to Be Dialed
buildCallOtherNumberList:callback:
API Description
This API is used to customize the list of a participant's other numbers to be dialed.
Precautions
None
Method Definition
- (void)buildCallOtherNumberList:(HWMAttendeeInfo *)attendee callback:(void(^)(NSArray<HWMCallOtherNumberItem *> *items))callback;
Parameter Description
Parameter |
Type |
Description |
---|---|---|
number |
NSString * |
Number. |
hideType |
HWMContactPhoneHideType |
Number hiding type. |
callback |
void (^callback)(HWMAttendeeInfo *attendee) |
Number click callback. |
Enumerated Value |
Description |
---|---|
HWMContactPhoneHideTypeNormal |
Visible. |
HWMContactPhoneHideTypeHidden |
Hidden and invisible. |
HWMContactPhoneHideTypeAnonymized |
Partially hidden and can be dialed. |
Return Values
None
Sample Code
- (void)buildCallOtherNumberList:(HWMAttendeeInfo *)attendee callback:(void (^)(NSArray<HWMCallOtherNumberItem *> * _Nonnull))callback { HWMCallOtherNumberItem *item = [[HWMCallOtherNumberItem alloc] init]; item.number = @"number"; item.callback = ^(HWMAttendeeInfo * _Nonnull attendee) { }; callback(@[item]); }
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot