-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added supports for BotKey. * Added option to specify botKey when creating `SBDSKTicket`. * Added `SBDSKTicket.cancel(transferGroupKey:completionHandler:)`. * Added support for FAQ. * Added `SBDSKTicket.selectQuestion(faqFileId:question:completionHandler:)`. * Added `SBDSKFAQData` and `SBDSKFAQResult`.
- Loading branch information
Showing
10 changed files
with
109 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+637 KB
(110%)
SendBirdDesk.framework.dSYM/Contents/Resources/DWARF/SendBirdDesk
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// SBDSKFAQData.h | ||
// SendBirdDesk | ||
// | ||
// Created by Minhyuk Kim on 2021/05/20. | ||
// Copyright © 2021 Jed Gyeong. All rights reserved. | ||
// | ||
|
||
#ifndef SBDSKFAQData_h | ||
#define SBDSKFAQData_h | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <SendBirdSDK/SendBirdSDK.h> | ||
#import "SBDSKFAQResult.h" | ||
|
||
@interface SBDSKFAQData : NSObject | ||
|
||
@property (atomic, readonly) long long faqFileId; | ||
@property (atomic, strong, readonly, nonnull) NSString *type; | ||
@property (atomic, strong, readonly, nonnull) NSArray<SBDSKFAQResult *> *faqResults; | ||
|
||
- (nullable instancetype)initWithMesage:(nonnull SBDBaseMessage *)message; | ||
|
||
@end | ||
|
||
#endif /* SBDSKFAQData_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// SBDSKFAQResult.h | ||
// SendBirdDesk | ||
// | ||
// Created by Minhyuk Kim on 2021/05/20. | ||
// Copyright © 2021 Jed Gyeong. All rights reserved. | ||
// | ||
|
||
#ifndef SBDSKFAQResult_h | ||
#define SBDSKFAQResult_h | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface SBDSKFAQResult : NSObject | ||
|
||
@property (atomic, strong, readonly, nullable) NSString *category; | ||
@property (atomic, strong, readonly, nullable) NSString *question; | ||
@property (atomic, strong, readonly, nullable) NSString *answer; | ||
@property (atomic, strong, readonly, nullable) NSString *keyword; | ||
@property (atomic, strong, readonly, nullable) NSString *url; | ||
@property (atomic, strong, readonly, nullable) NSString *imageURL; | ||
|
||
- (nullable instancetype)initWithDictionary:(nonnull NSDictionary *)dict; | ||
|
||
@end | ||
|
||
#endif /* SBDSKFAQResult_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters