Member
Member
VARIABLE | TYPE | DESCRIPTION | OPTIONAL |
---|---|---|---|
id | String? | Unique identifier of the member | ✔️ |
userUniqueId | String? | Unique user ID | ✔️ |
name | String? | Name of the member | ✔️ |
imageUrl | String? | URL of the member's profile image | ✔️ |
questionAnswers | [Question]? | List of questions and answers related to the member | ✔️ |
state | Int? | State of the member (e.g., active, inactive) | ✔️ |
isGuest | Bool | Indicates if the member is a guest | |
customIntroText | String? | Custom introductory text for the member | ✔️ |
customClickText | String? | Custom clickable text for the member | ✔️ |
memberSince | String? | Date the member joined | ✔️ |
communityName | String? | Name of the community the member belongs to | ✔️ |
isOwner | Bool | Indicates if the member is the owner of the community | |
isDeleted | Bool? | Indicates if the member is deleted | ✔️ |
customTitle | String? | Custom title for the member | ✔️ |
menu | [MemberAction]? | List of actions available to the member | ✔️ |
communityId | String? | ID of the community the member belongs to | ✔️ |
chatroomId | String? | ID of the chatroom the member belongs to | ✔️ |
route | String? | Route associated with the member | ✔️ |
attendingStatus | Bool? | Attendance status of the member | ✔️ |
hasProfileImage | Bool? | Indicates if the member has a profile image | ✔️ |
updatedAt | Int? | Timestamp of the last update for the member | ✔️ |
sdkClientInfo | SDKClientInfo? | Information about the SDK client the member is using | ✔️ |
uuid | String? | Unique UUID of the member | ✔️ |
User
VARIABLE | TYPE | DESCRIPTION | OPTIONAL |
---|---|---|---|
id | String? | Unique identifier of the user | :heavy_check_mark |
imageUrl | String? | URL of the user's profile image | :heavy_check_mark |
name | String? | Name of the user | :heavy_check_mark |
organisationName | String? | Name of the user's organization | :heavy_check_mark |
userUniqueID | String? | Unique identifier for the user | :heavy_check_mark |
uuid | String? | UUID associated with the user | :heavy_check_mark |
isGuest | Bool | Indicates if the user is a guest | |
isDeleted | Bool? | Indicates if the user is deleted | :heavy_check_mark |
isOwner | Bool? | Indicates if the user is the owner | :heavy_check_mark |
customTitle | String? | Custom title of the user | :heavy_check_mark |
state | Int? | State of the user | :heavy_check_mark |
updatedAt | Int? | Last update timestamp for the user | :heavy_check_mark |
sdkClientInfo | SDKClientInfo? | SDK client information associated with the user | :heavy_check_mark |
Member Action
VARIABLE | TYPE | DESCRIPTION | OPTIONAL |
---|---|---|---|
title | String? | Title of the action | ✔️ |
route | String? | Route associated with the action | ✔️ |
SDK Client Info
VARIABLE | TYPE | DESCRIPTION | OPTIONAL |
---|---|---|---|
community | Int? | The community ID | ✔️ |
user | Int? | The user ID | ✔️ |
userUniqueID | String? | The unique ID of the user | ✔️ |
uuid | String? | The UUID associated with the user | ✔️ |
Question
VARIABLE | TYPE | DESCRIPTION | OPTIONAL |
---|---|---|---|
id | Int? | Unique identifier of the question | :heavy_check_mark |
questionTitle | String? | The title of the question | :heavy_check_mark |
state | Int? | The state of the question | :heavy_check_mark |
value | String? | The value/answer provided for the question | :heavy_check_mark |
optional | Bool? | Indicates if the question is optional | :heavy_check_mark |
helpText | String? | Help text or additional context for the question | :heavy_check_mark |
field | Bool? | Indicates if the question is a field-type question | :heavy_check_mark |
isCompulsory | Bool? | Indicates if the question is compulsory | :heavy_check_mark |
isHidden | Bool? | Indicates if the question is hidden | :heavy_check_mark |
communityId | String? | ID of the community the question is associated with | :heavy_check_mark |
memberId | String? | ID of the member associated with the question | :heavy_check_mark |
directoryFields | Bool? | Indicates if the question belongs to directory fields | :heavy_check_mark |
imageUrl | String? | URL of the question's image | :heavy_check_mark |
canAddOtherOptions | Bool? | Indicates if other options can be added to the question | :heavy_check_mark |
questionChangeState | Int? | State indicating if the question has been changed | :heavy_check_mark |
isAnswerEditable | Bool? | Indicates if the answer is editable | :heavy_check_mark |