123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //
- // YMEnumeration.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/16.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- /** 音视频匹配类型 */
- typedef NS_ENUM(NSUInteger, YMAudioVideoMatchingType) {
- /** 视频*/
- YMAudioVideoMatchingTypeVideo = 0,
- /** 音频*/
- YMAudioVideoMatchingTypeAudio,
- };
- /** 设置功能类型 */
- typedef NS_ENUM(NSUInteger, YMSettingFunctionsType) {
- /** 账号绑定*/
- YMSettingFunctionsTypeAccountBinding = 19235,
- /** 美颜设置*/
- YMSettingFunctionsTypeBeautySetting,
- /** 聊天通知(消息通知)*/
- YMSettingFunctionsTypeChatNotification,
- /** 打招呼设置*/
- YMSettingFunctionsTypeGreetingSetting,
- /** 收费设置*/
- YMSettingFunctionsTypeFeesSetting,
- /** 青少年模式*/
- YMSettingFunctionsTypeAdolescentModel,
- /** 黑名单*/
- YMSettingFunctionsTypeBlackList,
- /** 清除缓存*/
- YMSettingFunctionsTypeClearCache,
- /** 去评分*/
- YMSettingFunctionsTypeGotoRating,
- /** 注销账号*/
- YMSettingFunctionsTypeCancellationAccount,
- /** 关于我们*/
- YMSettingFunctionsTypeAboutUs,
- /** 退出登录*/
- YMSettingFunctionsTypeLogOut,
- };
- /** 消息通知功能类型 */
- typedef NS_ENUM(NSUInteger, YMChatNotificationFunctionsType) {
- /** 个性化推荐*/
- YMChatNotificationFunctionsTypePersonalizedRecommendation = 23296,
- /** 缘分牵线*/
- YMChatNotificationFunctionsTypePredestinedAffinity,
- /** 点赞通知*/
- YMChatNotificationFunctionsTypeLikesNotification,
- /** 声音*/
- YMChatNotificationFunctionsTypeSound,
- /** 振动*/
- YMChatNotificationFunctionsTypeVibrate,
- };
- /** 收费设置功能类型 */
- typedef NS_ENUM(NSUInteger, YMFeesSettingFunctionsType) {
- /** 消息价格*/
- YMFeesSettingFunctionsTypeMessagePrice = 26321,
- /** 语音价格*/
- YMFeesSettingFunctionsTypeVoicePrice,
- /** 视频价格*/
- YMFeesSettingFunctionsTypeVideoPrice
- };
- /** 关于我们功能类型 */
- typedef NS_ENUM(NSUInteger, YMAboutUsFunctionsType) {
- /** 用户协议*/
- YMAboutUsFunctionsTypeUserAgreement = 21349,
- /** 隐私保护*/
- YMAboutUsFunctionsTypePrivacyAgreement,
- /** 第三方共享个人信息清单*/
- YMAboutUsFunctionsTypeThirdPartyPersonalInfoList,
- /** 权限申请说明*/
- YMAboutUsFunctionsTypePermissionRequestInstruction,
- /** 检测版本更新*/
- YMAboutUsFunctionsTypeDetectingVersionUpdates,
- };
|