77 lines
2.9 KiB
Dart
77 lines
2.9 KiB
Dart
class ApiEnum {
|
|
static const googleIdenty = "Google";
|
|
static const appleIdenty = "Apple";
|
|
static const facebookIdenty = "Facebook";
|
|
static const instagramIdenty = "Instagram";
|
|
//..........................................................................
|
|
static const isEmailExist = "Email_Not_Exist";
|
|
static const isUpdateUserProfile = "User_Profile_Setup";
|
|
static const isUpdateUserInformation = "User_Profile_Info";
|
|
static const isregistrationDone = "Registration_Done";
|
|
//..........................................................................
|
|
static const traineeUserRole = "Trainee";
|
|
static const coachUserRole = "Coach";
|
|
|
|
//...Post types enum........................................................
|
|
static const imagePostTypeID = "1";
|
|
static const videoPostTypeID = "2";
|
|
static const pollPostTypeID = "3";
|
|
static const sparkPostTypeID = "4";
|
|
static const onlyTextPostTypeId = "5";
|
|
|
|
//...Device Type.............................................................
|
|
static const androidDeviceTypeID = "1";
|
|
static const iosDeviceTypeID = "2";
|
|
static const webDeviceTypeID = "3";
|
|
//...Post Visibility types...................................................
|
|
static const publicPostVisibilityID = 1;
|
|
static const privatePostVisibilityID = 2;
|
|
static const exclusivePostVisibilityID = 3;
|
|
|
|
// Social Wall Connection status...............................................
|
|
static const allPeople = "All";
|
|
static const notConnected = "NotConnected";
|
|
static const pending = "Pending";
|
|
static const accepted = "Accepted";
|
|
static const rejected = "Rejected";
|
|
static const Connected = 'Connected';
|
|
static const Requested = "Requested";
|
|
|
|
// Social Wall Post Reaction...................................................
|
|
static const highFive = 1;
|
|
static const heart = 2;
|
|
static const beastMode = 3;
|
|
|
|
// Notification Type.............................................................
|
|
|
|
static const Goal = 1;
|
|
static const Challenge = 2;
|
|
static const ConnectionRequest = 3;
|
|
static const Post = 4;
|
|
static const RequestAccepted = 5;
|
|
static const CoachRequest = 6;
|
|
static const ReportPost = 7;
|
|
static const GoalCompleted = 8;
|
|
static const ChallengeCompleted = 9;
|
|
static const LiveStream = 10;
|
|
static const CallingNotification = 11;
|
|
static const ChatNotification = 12;
|
|
static const CommentPost = 13;
|
|
static const ReactPost = 14;
|
|
static const SubCommentPost = 15;
|
|
static const CoachApproval = 16;
|
|
static const RemainGoal = 17;
|
|
static const RemainChallenge = 18;
|
|
static const CallingNotificationCancel = 19;
|
|
static const UserDeleteFromAdmin = 20;
|
|
static const GoalProgressStatus = 21;
|
|
static const ChallengeProgressStatus = 22;
|
|
static const AddTribeMember = 23;
|
|
static const GroupChatNotification = 24;
|
|
|
|
// Chat Token.......................................................................
|
|
|
|
static const PUBLISHER = '1';
|
|
static const SUBSCRIBER = '2';
|
|
}
|