gmproto

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 16, 2024 License: AGPL-3.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	BrowserType_name = map[int32]string{
		0: "UNKNOWN_BROWSER_TYPE",
		1: "OTHER",
		2: "CHROME",
		3: "FIREFOX",
		4: "SAFARI",
		5: "OPERA",
		6: "IE",
		7: "EDGE",
	}
	BrowserType_value = map[string]int32{
		"UNKNOWN_BROWSER_TYPE": 0,
		"OTHER":                1,
		"CHROME":               2,
		"FIREFOX":              3,
		"SAFARI":               4,
		"OPERA":                5,
		"IE":                   6,
		"EDGE":                 7,
	}
)

Enum value maps for BrowserType.

View Source
var (
	DeviceType_name = map[int32]string{
		0: "UNKNOWN_DEVICE_TYPE",
		1: "WEB",
		2: "TABLET",
		3: "PWA",
	}
	DeviceType_value = map[string]int32{
		"UNKNOWN_DEVICE_TYPE": 0,
		"WEB":                 1,
		"TABLET":              2,
		"PWA":                 3,
	}
)

Enum value maps for DeviceType.

View Source
var (
	ConversationActionStatus_name = map[int32]string{
		0: "UNKNOWN_ACTION_STATUS",
		2: "UNBLOCK",
		7: "BLOCK",
		8: "BLOCK_AND_REPORT",
	}
	ConversationActionStatus_value = map[string]int32{
		"UNKNOWN_ACTION_STATUS": 0,
		"UNBLOCK":               2,
		"BLOCK":                 7,
		"BLOCK_AND_REPORT":      8,
	}
)

Enum value maps for ConversationActionStatus.

View Source
var (
	ConversationMuteStatus_name = map[int32]string{
		0: "UNMUTE",
		1: "MUTE",
	}
	ConversationMuteStatus_value = map[string]int32{
		"UNMUTE": 0,
		"MUTE":   1,
	}
)

Enum value maps for ConversationMuteStatus.

View Source
var (
	ListConversationsRequest_Folder_name = map[int32]string{
		0: "UNKNOWN",
		1: "INBOX",
		2: "ARCHIVE",
		5: "SPAM_BLOCKED",
	}
	ListConversationsRequest_Folder_value = map[string]int32{
		"UNKNOWN":      0,
		"INBOX":        1,
		"ARCHIVE":      2,
		"SPAM_BLOCKED": 5,
	}
)

Enum value maps for ListConversationsRequest_Folder.

View Source
var (
	GetOrCreateConversationResponse_Status_name = map[int32]string{
		0: "UNKNOWN",
		1: "SUCCESS",
		3: "CREATE_RCS",
	}
	GetOrCreateConversationResponse_Status_value = map[string]int32{
		"UNKNOWN":    0,
		"SUCCESS":    1,
		"CREATE_RCS": 3,
	}
)

Enum value maps for GetOrCreateConversationResponse_Status.

View Source
var (
	SendMessageResponse_Status_name = map[int32]string{
		0: "UNKNOWN",
		1: "SUCCESS",
		2: "FAILURE_2",
		3: "FAILURE_3",
		4: "FAILURE_4",
	}
	SendMessageResponse_Status_value = map[string]int32{
		"UNKNOWN":   0,
		"SUCCESS":   1,
		"FAILURE_2": 2,
		"FAILURE_3": 3,
		"FAILURE_4": 4,
	}
)

Enum value maps for SendMessageResponse_Status.

View Source
var (
	SendReactionRequest_Action_name = map[int32]string{
		0: "UNSPECIFIED",
		1: "ADD",
		2: "REMOVE",
		3: "SWITCH",
	}
	SendReactionRequest_Action_value = map[string]int32{
		"UNSPECIFIED": 0,
		"ADD":         1,
		"REMOVE":      2,
		"SWITCH":      3,
	}
)

Enum value maps for SendReactionRequest_Action.

View Source
var (
	EmojiType_name = map[int32]string{
		0:  "REACTION_TYPE_UNSPECIFIED",
		1:  "LIKE",
		2:  "LOVE",
		3:  "LAUGH",
		4:  "SURPRISED",
		5:  "SAD",
		6:  "ANGRY",
		7:  "DISLIKE",
		8:  "CUSTOM",
		9:  "QUESTIONING",
		10: "CRYING_FACE",
		11: "POUTING_FACE",
		12: "RED_HEART",
		13: "EMOTIFY",
	}
	EmojiType_value = map[string]int32{
		"REACTION_TYPE_UNSPECIFIED": 0,
		"LIKE":                      1,
		"LOVE":                      2,
		"LAUGH":                     3,
		"SURPRISED":                 4,
		"SAD":                       5,
		"ANGRY":                     6,
		"DISLIKE":                   7,
		"CUSTOM":                    8,
		"QUESTIONING":               9,
		"CRYING_FACE":               10,
		"POUTING_FACE":              11,
		"RED_HEART":                 12,
		"EMOTIFY":                   13,
	}
)

Enum value maps for EmojiType.

View Source
var (
	IdentifierType_name = map[int32]string{
		0: "UNKNOWN",
		1: "PHONE",
		2: "EMAIL",
	}
	IdentifierType_value = map[string]int32{
		"UNKNOWN": 0,
		"PHONE":   1,
		"EMAIL":   2,
	}
)

Enum value maps for IdentifierType.

View Source
var (
	ConversationSendMode_name = map[int32]string{
		0: "SEND_MODE_AUTO",
		1: "SEND_MODE_XMS",
		2: "SEND_MODE_XMS_LATCH",
	}
	ConversationSendMode_value = map[string]int32{
		"SEND_MODE_AUTO":      0,
		"SEND_MODE_XMS":       1,
		"SEND_MODE_XMS_LATCH": 2,
	}
)

Enum value maps for ConversationSendMode.

View Source
var (
	ConversationType_name = map[int32]string{
		0: "UNKNOWN_CONVERSATION_TYPE",
		1: "SMS",
		2: "RCS",
	}
	ConversationType_value = map[string]int32{
		"UNKNOWN_CONVERSATION_TYPE": 0,
		"SMS":                       1,
		"RCS":                       2,
	}
)

Enum value maps for ConversationType.

View Source
var (
	MessageStatusType_name = map[int32]string{
		0:   "STATUS_UNKNOWN",
		1:   "OUTGOING_COMPLETE",
		2:   "OUTGOING_DELIVERED",
		11:  "OUTGOING_DISPLAYED",
		3:   "OUTGOING_DRAFT",
		10:  "OUTGOING_SEND_AFTER_PROCESSING",
		4:   "OUTGOING_YET_TO_SEND",
		5:   "OUTGOING_SENDING",
		6:   "OUTGOING_RESENDING",
		7:   "OUTGOING_AWAITING_RETRY",
		8:   "OUTGOING_FAILED_GENERIC",
		9:   "OUTGOING_FAILED_EMERGENCY_NUMBER",
		12:  "OUTGOING_CANCELED",
		13:  "OUTGOING_FAILED_TOO_LARGE",
		14:  "OUTGOING_NOT_DELIVERED_YET",
		15:  "OUTGOING_REVOCATION_PENDING",
		16:  "OUTGOING_SCHEDULED",
		17:  "OUTGOING_FAILED_RECIPIENT_LOST_RCS",
		18:  "OUTGOING_FAILED_NO_RETRY_NO_FALLBACK",
		19:  "OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT",
		20:  "OUTGOING_VALIDATING",
		21:  "OUTGOING_FAILED_RECIPIENT_LOST_ENCRYPTION",
		22:  "OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT_NO_MORE_RETRY",
		100: "INCOMING_COMPLETE",
		101: "INCOMING_YET_TO_MANUAL_DOWNLOAD",
		102: "INCOMING_RETRYING_MANUAL_DOWNLOAD",
		103: "INCOMING_MANUAL_DOWNLOADING",
		104: "INCOMING_RETRYING_AUTO_DOWNLOAD",
		105: "INCOMING_AUTO_DOWNLOADING",
		106: "INCOMING_DOWNLOAD_FAILED",
		107: "INCOMING_EXPIRED_OR_NOT_AVAILABLE",
		108: "INCOMING_DELIVERED",
		109: "INCOMING_DISPLAYED",
		110: "INCOMING_DOWNLOAD_CANCELED",
		111: "INCOMING_DOWNLOAD_FAILED_TOO_LARGE",
		112: "INCOMING_DOWNLOAD_FAILED_SIM_HAS_NO_DATA",
		113: "INCOMING_FAILED_TO_DECRYPT",
		114: "INCOMING_DECRYPTION_ABORTED",
		200: "TOMBSTONE_PARTICIPANT_JOINED",
		201: "TOMBSTONE_PARTICIPANT_LEFT",
		202: "TOMBSTONE_SELF_LEFT",
		203: "TOMBSTONE_RCS_GROUP_CREATED",
		204: "TOMBSTONE_MMS_GROUP_CREATED",
		205: "TOMBSTONE_SMS_BROADCAST_CREATED",
		206: "TOMBSTONE_ONE_ON_ONE_SMS_CREATED",
		207: "TOMBSTONE_ONE_ON_ONE_RCS_CREATED",
		208: "TOMBSTONE_SWITCH_TO_GROUP_MMS",
		209: "TOMBSTONE_SWITCH_TO_BROADCAST_SMS",
		210: "TOMBSTONE_SHOW_LINK_PREVIEWS",
		211: "TOMBSTONE_GROUP_RENAMED_LOCAL",
		212: "TOMBSTONE_VERIFIED_SMS_APPLICABLE",
		213: "TOMBSTONE_ENCRYPTED_ONE_ON_ONE_RCS_CREATED",
		214: "TOMBSTONE_PROTOCOL_SWITCH_TO_TEXT",
		215: "TOMBSTONE_PROTOCOL_SWITCH_TO_RCS",
		216: "TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS",
		217: "TOMBSTONE_GROUP_RENAMED_GLOBAL",
		218: "TOMBSTONE_GROUP_NAME_CLEARED_GLOBAL",
		219: "TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS_INFO",
		220: "TOMBSTONE_SELF_REMOVED_FROM_GROUP",
		221: "MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_GROUP",
		222: "MESSAGE_STATUS_TOMBSTONE_SMS_NORM_PARTICIPANT_UPGRADED",
		223: "MESSAGE_STATUS_TOMBSTONE_RCS_NORM_PARTICIPANT_UPGRADED",
		224: "MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_RCS_NORM_PARTICIPANT_UPGRADED",
		225: "MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED",
		226: "MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED_INFO",
		227: "MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_LEFT",
		228: "MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_SELF_LEFT",
		229: "MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_CREATED",
		230: "MESSAGE_STATUS_TOMBSTONE_SELF_REMOVED_FROM_ENCRYPTED_GROUP",
		231: "MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_ENCRYPTED_GROUP",
		232: "MESSAGE_STATUS_TOMBSTONE_SUGGESTION_SHORTCUT_STAR_TOOLSTONE",
		233: "MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_RCS_TO_E2EE",
		234: "MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_RCS",
		235: "MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_TEXT_TO_E2EE",
		236: "MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_TEXT",
		237: "MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_RCS_TO_E2EE",
		238: "MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_RCS",
		239: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_EDUCATION",
		240: "MESSAGE_STATUS_TOMBSTONE_RBM_SIM_SWITCH",
		241: "MESSAGE_STATUS_TOMBSTONE_RBM_PRIVACY_NOTICE",
		242: "MESSAGE_STATUS_TOMBSTONE_PENPAL_CONVERSATION_NOTICE",
		243: "MESSAGE_STATUS_TOMBSTONE_MEET_OTHER_PARTICIPANT_REACHABLE",
		244: "MESSAGE_STATUS_TOMBSTONE_MISSED_VIDEO_CALL",
		245: "MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_THEME_CHANGE",
		246: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_SUCCESS_HELP_STILL_NEEDED",
		247: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_SUCCESS_HELP_NO_LONGER_NEEDED",
		248: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_FAILURE_HELP_STILL_NEEDED",
		249: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_FAILURE_HELP_NO_LONGER_NEEDED",
		250: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_UNEXPECTED_END",
		251: "MESSAGE_STATUS_TOMBSTONE_SATELLITE_MESSAGING_TOOLSTONE",
		252: "MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_MMS",
		253: "MESSAGE_STATUS_TOMBSTONE_PENPAL_PROACTIVE_MESSAGE_NOTICE",
		254: "MESSAGE_STATUS_TOMBSTONE_SUGGESTION_POSSIBLE_SCAM_TOOLSTONE",
		255: "MESSAGE_STATUS_TOMBSTONE_CHATBOT_UNSUBSCRIBE_SENT",
		256: "MESSAGE_STATUS_TOMBSTONE_CHATBOT_SUBSCRIBE_SENT",
		257: "MESSAGE_STATUS_TOMBSTONE_CHATBOT_UNSUBSCRIBE_CONFIRMED",
		258: "MESSAGE_STATUS_TOMBSTONE_CHATBOT_SUBSCRIBE_CONFIRMED",
		300: "MESSAGE_DELETED",
	}
	MessageStatusType_value = map[string]int32{
		"STATUS_UNKNOWN":                                                                    0,
		"OUTGOING_COMPLETE":                                                                 1,
		"OUTGOING_DELIVERED":                                                                2,
		"OUTGOING_DISPLAYED":                                                                11,
		"OUTGOING_DRAFT":                                                                    3,
		"OUTGOING_SEND_AFTER_PROCESSING":                                                    10,
		"OUTGOING_YET_TO_SEND":                                                              4,
		"OUTGOING_SENDING":                                                                  5,
		"OUTGOING_RESENDING":                                                                6,
		"OUTGOING_AWAITING_RETRY":                                                           7,
		"OUTGOING_FAILED_GENERIC":                                                           8,
		"OUTGOING_FAILED_EMERGENCY_NUMBER":                                                  9,
		"OUTGOING_CANCELED":                                                                 12,
		"OUTGOING_FAILED_TOO_LARGE":                                                         13,
		"OUTGOING_NOT_DELIVERED_YET":                                                        14,
		"OUTGOING_REVOCATION_PENDING":                                                       15,
		"OUTGOING_SCHEDULED":                                                                16,
		"OUTGOING_FAILED_RECIPIENT_LOST_RCS":                                                17,
		"OUTGOING_FAILED_NO_RETRY_NO_FALLBACK":                                              18,
		"OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT":                                         19,
		"OUTGOING_VALIDATING":                                                               20,
		"OUTGOING_FAILED_RECIPIENT_LOST_ENCRYPTION":                                         21,
		"OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT_NO_MORE_RETRY":                           22,
		"INCOMING_COMPLETE":                                                                 100,
		"INCOMING_YET_TO_MANUAL_DOWNLOAD":                                                   101,
		"INCOMING_RETRYING_MANUAL_DOWNLOAD":                                                 102,
		"INCOMING_MANUAL_DOWNLOADING":                                                       103,
		"INCOMING_RETRYING_AUTO_DOWNLOAD":                                                   104,
		"INCOMING_AUTO_DOWNLOADING":                                                         105,
		"INCOMING_DOWNLOAD_FAILED":                                                          106,
		"INCOMING_EXPIRED_OR_NOT_AVAILABLE":                                                 107,
		"INCOMING_DELIVERED":                                                                108,
		"INCOMING_DISPLAYED":                                                                109,
		"INCOMING_DOWNLOAD_CANCELED":                                                        110,
		"INCOMING_DOWNLOAD_FAILED_TOO_LARGE":                                                111,
		"INCOMING_DOWNLOAD_FAILED_SIM_HAS_NO_DATA":                                          112,
		"INCOMING_FAILED_TO_DECRYPT":                                                        113,
		"INCOMING_DECRYPTION_ABORTED":                                                       114,
		"TOMBSTONE_PARTICIPANT_JOINED":                                                      200,
		"TOMBSTONE_PARTICIPANT_LEFT":                                                        201,
		"TOMBSTONE_SELF_LEFT":                                                               202,
		"TOMBSTONE_RCS_GROUP_CREATED":                                                       203,
		"TOMBSTONE_MMS_GROUP_CREATED":                                                       204,
		"TOMBSTONE_SMS_BROADCAST_CREATED":                                                   205,
		"TOMBSTONE_ONE_ON_ONE_SMS_CREATED":                                                  206,
		"TOMBSTONE_ONE_ON_ONE_RCS_CREATED":                                                  207,
		"TOMBSTONE_SWITCH_TO_GROUP_MMS":                                                     208,
		"TOMBSTONE_SWITCH_TO_BROADCAST_SMS":                                                 209,
		"TOMBSTONE_SHOW_LINK_PREVIEWS":                                                      210,
		"TOMBSTONE_GROUP_RENAMED_LOCAL":                                                     211,
		"TOMBSTONE_VERIFIED_SMS_APPLICABLE":                                                 212,
		"TOMBSTONE_ENCRYPTED_ONE_ON_ONE_RCS_CREATED":                                        213,
		"TOMBSTONE_PROTOCOL_SWITCH_TO_TEXT":                                                 214,
		"TOMBSTONE_PROTOCOL_SWITCH_TO_RCS":                                                  215,
		"TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS":                                        216,
		"TOMBSTONE_GROUP_RENAMED_GLOBAL":                                                    217,
		"TOMBSTONE_GROUP_NAME_CLEARED_GLOBAL":                                               218,
		"TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS_INFO":                                   219,
		"TOMBSTONE_SELF_REMOVED_FROM_GROUP":                                                 220,
		"MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_GROUP":                           221,
		"MESSAGE_STATUS_TOMBSTONE_SMS_NORM_PARTICIPANT_UPGRADED":                            222,
		"MESSAGE_STATUS_TOMBSTONE_RCS_NORM_PARTICIPANT_UPGRADED":                            223,
		"MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_RCS_NORM_PARTICIPANT_UPGRADED":                  224,
		"MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED":                       225,
		"MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED_INFO":                  226,
		"MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_LEFT":                         227,
		"MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_SELF_LEFT":                                228,
		"MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_CREATED":                                  229,
		"MESSAGE_STATUS_TOMBSTONE_SELF_REMOVED_FROM_ENCRYPTED_GROUP":                        230,
		"MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_ENCRYPTED_GROUP":                 231,
		"MESSAGE_STATUS_TOMBSTONE_SUGGESTION_SHORTCUT_STAR_TOOLSTONE":                       232,
		"MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_RCS_TO_E2EE":                        233,
		"MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_RCS":                        234,
		"MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_TEXT_TO_E2EE":                             235,
		"MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_TEXT":                             236,
		"MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_RCS_TO_E2EE":                              237,
		"MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_RCS":                              238,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_EDUCATION":                                      239,
		"MESSAGE_STATUS_TOMBSTONE_RBM_SIM_SWITCH":                                           240,
		"MESSAGE_STATUS_TOMBSTONE_RBM_PRIVACY_NOTICE":                                       241,
		"MESSAGE_STATUS_TOMBSTONE_PENPAL_CONVERSATION_NOTICE":                               242,
		"MESSAGE_STATUS_TOMBSTONE_MEET_OTHER_PARTICIPANT_REACHABLE":                         243,
		"MESSAGE_STATUS_TOMBSTONE_MISSED_VIDEO_CALL":                                        244,
		"MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_THEME_CHANGE":                                 245,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_SUCCESS_HELP_STILL_NEEDED":     246,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_SUCCESS_HELP_NO_LONGER_NEEDED": 247,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_FAILURE_HELP_STILL_NEEDED":     248,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_FAILURE_HELP_NO_LONGER_NEEDED": 249,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_UNEXPECTED_END":                250,
		"MESSAGE_STATUS_TOMBSTONE_SATELLITE_MESSAGING_TOOLSTONE":                            251,
		"MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_MMS":                        252,
		"MESSAGE_STATUS_TOMBSTONE_PENPAL_PROACTIVE_MESSAGE_NOTICE":                          253,
		"MESSAGE_STATUS_TOMBSTONE_SUGGESTION_POSSIBLE_SCAM_TOOLSTONE":                       254,
		"MESSAGE_STATUS_TOMBSTONE_CHATBOT_UNSUBSCRIBE_SENT":                                 255,
		"MESSAGE_STATUS_TOMBSTONE_CHATBOT_SUBSCRIBE_SENT":                                   256,
		"MESSAGE_STATUS_TOMBSTONE_CHATBOT_UNSUBSCRIBE_CONFIRMED":                            257,
		"MESSAGE_STATUS_TOMBSTONE_CHATBOT_SUBSCRIBE_CONFIRMED":                              258,
		"MESSAGE_DELETED":                                                                   300,
	}
)

Enum value maps for MessageStatusType.

View Source
var (
	ConversationStatus_name = map[int32]string{
		0: "UNKNOWN_CONVERSATION_STATUS",
		1: "ACTIVE",
		2: "ARCHIVED",
		3: "DELETED",
		4: "KEEP_ARCHIVED",
		5: "SPAM_FOLDER",
		6: "BLOCKED_FOLDER",
	}
	ConversationStatus_value = map[string]int32{
		"UNKNOWN_CONVERSATION_STATUS": 0,
		"ACTIVE":                      1,
		"ARCHIVED":                    2,
		"DELETED":                     3,
		"KEEP_ARCHIVED":               4,
		"SPAM_FOLDER":                 5,
		"BLOCKED_FOLDER":              6,
	}
)

Enum value maps for ConversationStatus.

View Source
var (
	MediaFormats_name = map[int32]string{
		0:  "UNSPECIFIED_TYPE",
		1:  "IMAGE_JPEG",
		2:  "IMAGE_JPG",
		3:  "IMAGE_PNG",
		4:  "IMAGE_GIF",
		5:  "IMAGE_WBMP",
		6:  "IMAGE_X_MS_BMP",
		7:  "IMAGE_UNSPECIFIED",
		8:  "VIDEO_MP4",
		9:  "VIDEO_3G2",
		10: "VIDEO_3GPP",
		11: "VIDEO_WEBM",
		12: "VIDEO_MKV",
		13: "VIDEO_UNSPECIFIED",
		14: "AUDIO_AAC",
		15: "AUDIO_AMR",
		16: "AUDIO_MP3",
		17: "AUDIO_MPEG",
		18: "AUDIO_MPG",
		19: "AUDIO_MP4",
		20: "AUDIO_MP4_LATM",
		21: "AUDIO_3GPP",
		22: "AUDIO_OGG",
		23: "AUDIO_UNSPECIFIED",
		24: "TEXT_VCARD",
		25: "APP_PDF",
		26: "APP_TXT",
		27: "APP_HTML",
		28: "APP_DOC",
		29: "APP_DOCX",
		30: "APP_PPTX",
		31: "APP_PPT",
		32: "APP_XLSX",
		33: "APP_XLS",
		34: "APP_APK",
		35: "APP_ZIP",
		36: "APP_JAR",
		37: "APP_UNSPECIFIED",
		38: "CAL_TEXT_VCALENDAR",
		39: "CAL_TEXT_XVCALENDAR",
		40: "CAL_TEXT_CALENDAR",
		41: "CAL_APPLICATION_VCS",
		42: "CAL_APPLICATION_ICS",
		43: "CAL_APPLICATION_HBSVCS",
	}
	MediaFormats_value = map[string]int32{
		"UNSPECIFIED_TYPE":       0,
		"IMAGE_JPEG":             1,
		"IMAGE_JPG":              2,
		"IMAGE_PNG":              3,
		"IMAGE_GIF":              4,
		"IMAGE_WBMP":             5,
		"IMAGE_X_MS_BMP":         6,
		"IMAGE_UNSPECIFIED":      7,
		"VIDEO_MP4":              8,
		"VIDEO_3G2":              9,
		"VIDEO_3GPP":             10,
		"VIDEO_WEBM":             11,
		"VIDEO_MKV":              12,
		"VIDEO_UNSPECIFIED":      13,
		"AUDIO_AAC":              14,
		"AUDIO_AMR":              15,
		"AUDIO_MP3":              16,
		"AUDIO_MPEG":             17,
		"AUDIO_MPG":              18,
		"AUDIO_MP4":              19,
		"AUDIO_MP4_LATM":         20,
		"AUDIO_3GPP":             21,
		"AUDIO_OGG":              22,
		"AUDIO_UNSPECIFIED":      23,
		"TEXT_VCARD":             24,
		"APP_PDF":                25,
		"APP_TXT":                26,
		"APP_HTML":               27,
		"APP_DOC":                28,
		"APP_DOCX":               29,
		"APP_PPTX":               30,
		"APP_PPT":                31,
		"APP_XLSX":               32,
		"APP_XLS":                33,
		"APP_APK":                34,
		"APP_ZIP":                35,
		"APP_JAR":                36,
		"APP_UNSPECIFIED":        37,
		"CAL_TEXT_VCALENDAR":     38,
		"CAL_TEXT_XVCALENDAR":    39,
		"CAL_TEXT_CALENDAR":      40,
		"CAL_APPLICATION_VCS":    41,
		"CAL_APPLICATION_ICS":    42,
		"CAL_APPLICATION_HBSVCS": 43,
	}
)

Enum value maps for MediaFormats.

View Source
var (
	AlertType_name = map[int32]string{
		0:  "ALERT_TYPE_UNKNOWN",
		1:  "BROWSER_INACTIVE",
		2:  "BROWSER_ACTIVE",
		3:  "MOBILE_DATA_CONNECTION",
		4:  "MOBILE_WIFI_CONNECTION",
		5:  "MOBILE_BATTERY_LOW",
		6:  "MOBILE_BATTERY_RESTORED",
		7:  "BROWSER_INACTIVE_FROM_TIMEOUT",
		8:  "BROWSER_INACTIVE_FROM_INACTIVITY",
		9:  "RCS_CONNECTION",
		10: "OBSERVER_REGISTERED",
		11: "MOBILE_DATABASE_SYNCING",
		12: "MOBILE_DATABASE_SYNC_COMPLETE",
		13: "MOBILE_DATABASE_SYNC_STARTED",
		14: "MOBILE_DATABASE_PARTIAL_SYNC_COMPLETED",
		15: "MOBILE_DATABASE_PARTIAL_SYNC_STARTED",
		16: "CONTACTS_REFRESH_STARTED",
		17: "CONTACTS_REFRESH_COMPLETED",
	}
	AlertType_value = map[string]int32{
		"ALERT_TYPE_UNKNOWN":                     0,
		"BROWSER_INACTIVE":                       1,
		"BROWSER_ACTIVE":                         2,
		"MOBILE_DATA_CONNECTION":                 3,
		"MOBILE_WIFI_CONNECTION":                 4,
		"MOBILE_BATTERY_LOW":                     5,
		"MOBILE_BATTERY_RESTORED":                6,
		"BROWSER_INACTIVE_FROM_TIMEOUT":          7,
		"BROWSER_INACTIVE_FROM_INACTIVITY":       8,
		"RCS_CONNECTION":                         9,
		"OBSERVER_REGISTERED":                    10,
		"MOBILE_DATABASE_SYNCING":                11,
		"MOBILE_DATABASE_SYNC_COMPLETE":          12,
		"MOBILE_DATABASE_SYNC_STARTED":           13,
		"MOBILE_DATABASE_PARTIAL_SYNC_COMPLETED": 14,
		"MOBILE_DATABASE_PARTIAL_SYNC_STARTED":   15,
		"CONTACTS_REFRESH_STARTED":               16,
		"CONTACTS_REFRESH_COMPLETED":             17,
	}
)

Enum value maps for AlertType.

View Source
var (
	TypingTypes_name = map[int32]string{
		0: "STOPPED_TYPING",
		1: "STARTED_TYPING",
	}
	TypingTypes_value = map[string]int32{
		"STOPPED_TYPING": 0,
		"STARTED_TYPING": 1,
	}
)

Enum value maps for TypingTypes.

View Source
var (
	BugleRoute_name = map[int32]string{
		0:  "Unknown",
		19: "DataEvent",
		14: "PairEvent",
		7:  "GaiaEvent",
	}
	BugleRoute_value = map[string]int32{
		"Unknown":   0,
		"DataEvent": 19,
		"PairEvent": 14,
		"GaiaEvent": 7,
	}
)

Enum value maps for BugleRoute.

View Source
var (
	ActionType_name = map[int32]string{
		0:  "UNSPECIFIED",
		1:  "LIST_CONVERSATIONS",
		2:  "LIST_MESSAGES",
		3:  "SEND_MESSAGE",
		4:  "MESSAGE_UPDATES",
		6:  "LIST_CONTACTS",
		7:  "CONVERSATION_UPDATES",
		9:  "GET_OR_CREATE_CONVERSATION",
		10: "MESSAGE_READ",
		11: "BROWSER_PRESENCE_CHECK",
		12: "TYPING_UPDATES",
		13: "SETTINGS_UPDATE",
		14: "USER_ALERT",
		15: "UPDATE_CONVERSATION",
		16: "GET_UPDATES",
		17: "ACK_BROWSER_PRESENCE",
		18: "LIST_STICKER_SETS",
		19: "LEAVE_RCS_GROUP",
		20: "ADD_PARTICIPANT_TO_RCS_GROUP",
		21: "GET_CONVERSATION_TYPE",
		22: "NOTIFY_DITTO_ACTIVITY",
		23: "DELETE_MESSAGE",
		24: "INSTALL_STICKER_SET",
		25: "RESEND_MESSAGE",
		26: "GET_CONTACT_RCS_GROUP_STATUS",
		27: "DOWNLOAD_MESSAGE",
		28: "LIST_TOP_CONTACTS",
		29: "GET_CONTACTS_THUMBNAIL",
		30: "CHANGE_PARTICIPANT_COLOR",
		31: "IS_BUGLE_DEFAULT",
		32: "STICKER_USER_CONTEXT",
		33: "FAVORITE_STICKER_PACKS",
		34: "RECENT_STICKERS",
		35: "UPDATE_RECENT_STICKERS",
		36: "GET_FULL_SIZE_IMAGE",
		37: "GET_PARTICIPANTS_THUMBNAIL",
		38: "SEND_REACTION",
		39: "SEND_REPLY",
		40: "GET_BLOB_FOR_ATTACHMENT",
		41: "GET_DEVICES_AVAILABLE_FOR_GAIA_PAIRING",
		42: "CREATE_GAIA_PAIRING",
		43: "GET_CONVERSATION",
		44: "CREATE_GAIA_PAIRING_CLIENT_INIT",
		45: "CREATE_GAIA_PAIRING_CLIENT_FINISHED",
		46: "UNPAIR_GAIA_PAIRING",
		47: "CANCEL_GAIA_PAIRING",
		48: "PREWARM",
	}
	ActionType_value = map[string]int32{
		"UNSPECIFIED":                            0,
		"LIST_CONVERSATIONS":                     1,
		"LIST_MESSAGES":                          2,
		"SEND_MESSAGE":                           3,
		"MESSAGE_UPDATES":                        4,
		"LIST_CONTACTS":                          6,
		"CONVERSATION_UPDATES":                   7,
		"GET_OR_CREATE_CONVERSATION":             9,
		"MESSAGE_READ":                           10,
		"BROWSER_PRESENCE_CHECK":                 11,
		"TYPING_UPDATES":                         12,
		"SETTINGS_UPDATE":                        13,
		"USER_ALERT":                             14,
		"UPDATE_CONVERSATION":                    15,
		"GET_UPDATES":                            16,
		"ACK_BROWSER_PRESENCE":                   17,
		"LIST_STICKER_SETS":                      18,
		"LEAVE_RCS_GROUP":                        19,
		"ADD_PARTICIPANT_TO_RCS_GROUP":           20,
		"GET_CONVERSATION_TYPE":                  21,
		"NOTIFY_DITTO_ACTIVITY":                  22,
		"DELETE_MESSAGE":                         23,
		"INSTALL_STICKER_SET":                    24,
		"RESEND_MESSAGE":                         25,
		"GET_CONTACT_RCS_GROUP_STATUS":           26,
		"DOWNLOAD_MESSAGE":                       27,
		"LIST_TOP_CONTACTS":                      28,
		"GET_CONTACTS_THUMBNAIL":                 29,
		"CHANGE_PARTICIPANT_COLOR":               30,
		"IS_BUGLE_DEFAULT":                       31,
		"STICKER_USER_CONTEXT":                   32,
		"FAVORITE_STICKER_PACKS":                 33,
		"RECENT_STICKERS":                        34,
		"UPDATE_RECENT_STICKERS":                 35,
		"GET_FULL_SIZE_IMAGE":                    36,
		"GET_PARTICIPANTS_THUMBNAIL":             37,
		"SEND_REACTION":                          38,
		"SEND_REPLY":                             39,
		"GET_BLOB_FOR_ATTACHMENT":                40,
		"GET_DEVICES_AVAILABLE_FOR_GAIA_PAIRING": 41,
		"CREATE_GAIA_PAIRING":                    42,
		"GET_CONVERSATION":                       43,
		"CREATE_GAIA_PAIRING_CLIENT_INIT":        44,
		"CREATE_GAIA_PAIRING_CLIENT_FINISHED":    45,
		"UNPAIR_GAIA_PAIRING":                    46,
		"CANCEL_GAIA_PAIRING":                    47,
		"PREWARM":                                48,
	}
)

Enum value maps for ActionType.

View Source
var (
	MessageType_name = map[int32]string{
		0:  "UNKNOWN_MESSAGE_TYPE",
		2:  "BUGLE_MESSAGE",
		3:  "GAIA_1",
		16: "BUGLE_ANNOTATION",
		20: "GAIA_2",
	}
	MessageType_value = map[string]int32{
		"UNKNOWN_MESSAGE_TYPE": 0,
		"BUGLE_MESSAGE":        2,
		"GAIA_1":               3,
		"BUGLE_ANNOTATION":     16,
		"GAIA_2":               20,
	}
)

Enum value maps for MessageType.

View Source
var (
	Ukey2HandshakeCipher_name = map[int32]string{
		0:   "RESERVED",
		100: "P256_SHA512",
		200: "CURVE25519_SHA512",
	}
	Ukey2HandshakeCipher_value = map[string]int32{
		"RESERVED":          0,
		"P256_SHA512":       100,
		"CURVE25519_SHA512": 200,
	}
)

Enum value maps for Ukey2HandshakeCipher.

View Source
var (
	PublicKeyType_name = map[int32]string{
		0: "UNKNOWN_PUBLIC_KEY_TYPE",
		1: "EC_P256",
		2: "RSA2048",
		3: "DH2048_MODP",
	}
	PublicKeyType_value = map[string]int32{
		"UNKNOWN_PUBLIC_KEY_TYPE": 0,
		"EC_P256":                 1,
		"RSA2048":                 2,
		"DH2048_MODP":             3,
	}
)

Enum value maps for PublicKeyType.

View Source
var (
	Ukey2Message_Type_name = map[int32]string{
		0: "UNKNOWN_DO_NOT_USE",
		1: "ALERT",
		2: "CLIENT_INIT",
		3: "SERVER_INIT",
		4: "CLIENT_FINISH",
	}
	Ukey2Message_Type_value = map[string]int32{
		"UNKNOWN_DO_NOT_USE": 0,
		"ALERT":              1,
		"CLIENT_INIT":        2,
		"SERVER_INIT":        3,
		"CLIENT_FINISH":      4,
	}
)

Enum value maps for Ukey2Message_Type.

View Source
var (
	Ukey2Alert_AlertType_name = map[int32]string{
		0:   "UNKNOWN_ALERT_TYPE",
		1:   "BAD_MESSAGE",
		2:   "BAD_MESSAGE_TYPE",
		3:   "INCORRECT_MESSAGE",
		4:   "BAD_MESSAGE_DATA",
		100: "BAD_VERSION",
		101: "BAD_RANDOM",
		102: "BAD_HANDSHAKE_CIPHER",
		103: "BAD_NEXT_PROTOCOL",
		104: "BAD_PUBLIC_KEY",
		200: "INTERNAL_ERROR",
	}
	Ukey2Alert_AlertType_value = map[string]int32{
		"UNKNOWN_ALERT_TYPE":   0,
		"BAD_MESSAGE":          1,
		"BAD_MESSAGE_TYPE":     2,
		"INCORRECT_MESSAGE":    3,
		"BAD_MESSAGE_DATA":     4,
		"BAD_VERSION":          100,
		"BAD_RANDOM":           101,
		"BAD_HANDSHAKE_CIPHER": 102,
		"BAD_NEXT_PROTOCOL":    103,
		"BAD_PUBLIC_KEY":       104,
		"INTERNAL_ERROR":       200,
	}
)

Enum value maps for Ukey2Alert_AlertType.

View Source
var File_authentication_proto protoreflect.FileDescriptor
View Source
var File_client_proto protoreflect.FileDescriptor
View Source
var File_config_proto protoreflect.FileDescriptor
View Source
var File_conversations_proto protoreflect.FileDescriptor
View Source
var File_events_proto protoreflect.FileDescriptor
View Source
var File_settings_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AccountChangeOrSomethingEvent

type AccountChangeOrSomethingEvent struct {
	Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	Enabled bool   `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountChangeOrSomethingEvent) Descriptor deprecated

func (*AccountChangeOrSomethingEvent) Descriptor() ([]byte, []int)

Deprecated: Use AccountChangeOrSomethingEvent.ProtoReflect.Descriptor instead.

func (*AccountChangeOrSomethingEvent) GetAccount

func (x *AccountChangeOrSomethingEvent) GetAccount() string

func (*AccountChangeOrSomethingEvent) GetEnabled

func (x *AccountChangeOrSomethingEvent) GetEnabled() bool

func (*AccountChangeOrSomethingEvent) ProtoMessage

func (*AccountChangeOrSomethingEvent) ProtoMessage()

func (*AccountChangeOrSomethingEvent) ProtoReflect

func (*AccountChangeOrSomethingEvent) Reset

func (x *AccountChangeOrSomethingEvent) Reset()

func (*AccountChangeOrSomethingEvent) String

type AckMessageRequest

type AckMessageRequest struct {
	AuthData *AuthMessage                 `protobuf:"bytes,1,opt,name=authData,proto3" json:"authData,omitempty"`
	EmptyArr *EmptyArr                    `protobuf:"bytes,2,opt,name=emptyArr,proto3" json:"emptyArr,omitempty"`
	Acks     []*AckMessageRequest_Message `protobuf:"bytes,4,rep,name=acks,proto3" json:"acks,omitempty"`
	// contains filtered or unexported fields
}

func (*AckMessageRequest) Descriptor deprecated

func (*AckMessageRequest) Descriptor() ([]byte, []int)

Deprecated: Use AckMessageRequest.ProtoReflect.Descriptor instead.

func (*AckMessageRequest) GetAcks

func (*AckMessageRequest) GetAuthData

func (x *AckMessageRequest) GetAuthData() *AuthMessage

func (*AckMessageRequest) GetEmptyArr

func (x *AckMessageRequest) GetEmptyArr() *EmptyArr

func (*AckMessageRequest) ProtoMessage

func (*AckMessageRequest) ProtoMessage()

func (*AckMessageRequest) ProtoReflect

func (x *AckMessageRequest) ProtoReflect() protoreflect.Message

func (*AckMessageRequest) Reset

func (x *AckMessageRequest) Reset()

func (*AckMessageRequest) String

func (x *AckMessageRequest) String() string

type AckMessageRequest_Message

type AckMessageRequest_Message struct {
	RequestID string  `protobuf:"bytes,1,opt,name=requestID,proto3" json:"requestID,omitempty"`
	Device    *Device `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
	// contains filtered or unexported fields
}

func (*AckMessageRequest_Message) Descriptor deprecated

func (*AckMessageRequest_Message) Descriptor() ([]byte, []int)

Deprecated: Use AckMessageRequest_Message.ProtoReflect.Descriptor instead.

func (*AckMessageRequest_Message) GetDevice

func (x *AckMessageRequest_Message) GetDevice() *Device

func (*AckMessageRequest_Message) GetRequestID

func (x *AckMessageRequest_Message) GetRequestID() string

func (*AckMessageRequest_Message) ProtoMessage

func (*AckMessageRequest_Message) ProtoMessage()

func (*AckMessageRequest_Message) ProtoReflect

func (*AckMessageRequest_Message) Reset

func (x *AckMessageRequest_Message) Reset()

func (*AckMessageRequest_Message) String

func (x *AckMessageRequest_Message) String() string

type ActionType

type ActionType int32
const (
	ActionType_UNSPECIFIED                            ActionType = 0
	ActionType_LIST_CONVERSATIONS                     ActionType = 1
	ActionType_LIST_MESSAGES                          ActionType = 2
	ActionType_SEND_MESSAGE                           ActionType = 3
	ActionType_MESSAGE_UPDATES                        ActionType = 4
	ActionType_LIST_CONTACTS                          ActionType = 6
	ActionType_CONVERSATION_UPDATES                   ActionType = 7
	ActionType_GET_OR_CREATE_CONVERSATION             ActionType = 9
	ActionType_MESSAGE_READ                           ActionType = 10
	ActionType_BROWSER_PRESENCE_CHECK                 ActionType = 11
	ActionType_TYPING_UPDATES                         ActionType = 12
	ActionType_SETTINGS_UPDATE                        ActionType = 13
	ActionType_USER_ALERT                             ActionType = 14
	ActionType_UPDATE_CONVERSATION                    ActionType = 15
	ActionType_GET_UPDATES                            ActionType = 16
	ActionType_ACK_BROWSER_PRESENCE                   ActionType = 17
	ActionType_LIST_STICKER_SETS                      ActionType = 18
	ActionType_LEAVE_RCS_GROUP                        ActionType = 19
	ActionType_ADD_PARTICIPANT_TO_RCS_GROUP           ActionType = 20
	ActionType_GET_CONVERSATION_TYPE                  ActionType = 21
	ActionType_NOTIFY_DITTO_ACTIVITY                  ActionType = 22
	ActionType_DELETE_MESSAGE                         ActionType = 23
	ActionType_INSTALL_STICKER_SET                    ActionType = 24
	ActionType_RESEND_MESSAGE                         ActionType = 25
	ActionType_GET_CONTACT_RCS_GROUP_STATUS           ActionType = 26
	ActionType_DOWNLOAD_MESSAGE                       ActionType = 27
	ActionType_LIST_TOP_CONTACTS                      ActionType = 28
	ActionType_GET_CONTACTS_THUMBNAIL                 ActionType = 29
	ActionType_CHANGE_PARTICIPANT_COLOR               ActionType = 30
	ActionType_IS_BUGLE_DEFAULT                       ActionType = 31
	ActionType_STICKER_USER_CONTEXT                   ActionType = 32
	ActionType_FAVORITE_STICKER_PACKS                 ActionType = 33
	ActionType_RECENT_STICKERS                        ActionType = 34
	ActionType_UPDATE_RECENT_STICKERS                 ActionType = 35
	ActionType_GET_FULL_SIZE_IMAGE                    ActionType = 36
	ActionType_GET_PARTICIPANTS_THUMBNAIL             ActionType = 37
	ActionType_SEND_REACTION                          ActionType = 38
	ActionType_SEND_REPLY                             ActionType = 39
	ActionType_GET_BLOB_FOR_ATTACHMENT                ActionType = 40
	ActionType_GET_DEVICES_AVAILABLE_FOR_GAIA_PAIRING ActionType = 41
	ActionType_CREATE_GAIA_PAIRING                    ActionType = 42
	ActionType_GET_CONVERSATION                       ActionType = 43
	ActionType_CREATE_GAIA_PAIRING_CLIENT_INIT        ActionType = 44
	ActionType_CREATE_GAIA_PAIRING_CLIENT_FINISHED    ActionType = 45
	ActionType_UNPAIR_GAIA_PAIRING                    ActionType = 46
	ActionType_CANCEL_GAIA_PAIRING                    ActionType = 47
	ActionType_PREWARM                                ActionType = 48
)

func (ActionType) Descriptor

func (ActionType) Descriptor() protoreflect.EnumDescriptor

func (ActionType) Enum

func (x ActionType) Enum() *ActionType

func (ActionType) EnumDescriptor deprecated

func (ActionType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ActionType.Descriptor instead.

func (ActionType) Number

func (x ActionType) Number() protoreflect.EnumNumber

func (ActionType) String

func (x ActionType) String() string

func (ActionType) Type

type AlertType

type AlertType int32
const (
	AlertType_ALERT_TYPE_UNKNOWN                     AlertType = 0
	AlertType_BROWSER_INACTIVE                       AlertType = 1  // Emitted whenever browser connection becomes inactive
	AlertType_BROWSER_ACTIVE                         AlertType = 2  // Emitted whenever a new browser session is created
	AlertType_MOBILE_DATA_CONNECTION                 AlertType = 3  // Emitted when the paired device connects to data
	AlertType_MOBILE_WIFI_CONNECTION                 AlertType = 4  // Emitted when the paired device connects to wifi
	AlertType_MOBILE_BATTERY_LOW                     AlertType = 5  // Emitted if the paired device reaches low battery
	AlertType_MOBILE_BATTERY_RESTORED                AlertType = 6  // Emitted if the paired device has restored battery enough to not be considered low
	AlertType_BROWSER_INACTIVE_FROM_TIMEOUT          AlertType = 7  // Emitted whenever browser connection becomes inactive due to timeout
	AlertType_BROWSER_INACTIVE_FROM_INACTIVITY       AlertType = 8  // Emitted whenever browser connection becomes inactive due to inactivity
	AlertType_RCS_CONNECTION                         AlertType = 9  // Emitted whenever RCS connection has been established successfully
	AlertType_OBSERVER_REGISTERED                    AlertType = 10 // Unknown
	AlertType_MOBILE_DATABASE_SYNCING                AlertType = 11 // Emitted whenever the paired device is attempting to sync db
	AlertType_MOBILE_DATABASE_SYNC_COMPLETE          AlertType = 12 // Emitted whenever the paired device has completed the db sync
	AlertType_MOBILE_DATABASE_SYNC_STARTED           AlertType = 13 // Emitted whenever the paired device has begun syncing the db
	AlertType_MOBILE_DATABASE_PARTIAL_SYNC_COMPLETED AlertType = 14 // Emitted whenever the paired device has successfully synced a chunk of the db
	AlertType_MOBILE_DATABASE_PARTIAL_SYNC_STARTED   AlertType = 15 // Emitted whenever the paired device has begun syncing a chunk of the db
	AlertType_CONTACTS_REFRESH_STARTED               AlertType = 16 // Emitted whenever the paired device has begun refreshing contacts
	AlertType_CONTACTS_REFRESH_COMPLETED             AlertType = 17 // Emitted whenever the paired device has successfully refreshed contacts
)

func (AlertType) Descriptor

func (AlertType) Descriptor() protoreflect.EnumDescriptor

func (AlertType) Enum

func (x AlertType) Enum() *AlertType

func (AlertType) EnumDescriptor deprecated

func (AlertType) EnumDescriptor() ([]byte, []int)

Deprecated: Use AlertType.Descriptor instead.

func (AlertType) Number

func (x AlertType) Number() protoreflect.EnumNumber

func (AlertType) String

func (x AlertType) String() string

func (AlertType) Type

type AttachmentInfo

type AttachmentInfo struct {
	AttachmentID string `protobuf:"bytes,1,opt,name=attachmentID,proto3" json:"attachmentID,omitempty"`
	Encrypted    bool   `protobuf:"varint,2,opt,name=encrypted,proto3" json:"encrypted,omitempty"`
	// contains filtered or unexported fields
}

func (*AttachmentInfo) Descriptor deprecated

func (*AttachmentInfo) Descriptor() ([]byte, []int)

Deprecated: Use AttachmentInfo.ProtoReflect.Descriptor instead.

func (*AttachmentInfo) GetAttachmentID

func (x *AttachmentInfo) GetAttachmentID() string

func (*AttachmentInfo) GetEncrypted

func (x *AttachmentInfo) GetEncrypted() bool

func (*AttachmentInfo) ProtoMessage

func (*AttachmentInfo) ProtoMessage()

func (*AttachmentInfo) ProtoReflect

func (x *AttachmentInfo) ProtoReflect() protoreflect.Message

func (*AttachmentInfo) Reset

func (x *AttachmentInfo) Reset()

func (*AttachmentInfo) String

func (x *AttachmentInfo) String() string

type AuthMessage

type AuthMessage struct {
	RequestID        string         `protobuf:"bytes,1,opt,name=requestID,proto3" json:"requestID,omitempty"`
	Network          string         `protobuf:"bytes,3,opt,name=network,proto3" json:"network,omitempty"`
	TachyonAuthToken []byte         `protobuf:"bytes,6,opt,name=tachyonAuthToken,proto3" json:"tachyonAuthToken,omitempty"`
	ConfigVersion    *ConfigVersion `protobuf:"bytes,7,opt,name=configVersion,proto3" json:"configVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthMessage) Descriptor deprecated

func (*AuthMessage) Descriptor() ([]byte, []int)

Deprecated: Use AuthMessage.ProtoReflect.Descriptor instead.

func (*AuthMessage) GetConfigVersion

func (x *AuthMessage) GetConfigVersion() *ConfigVersion

func (*AuthMessage) GetNetwork

func (x *AuthMessage) GetNetwork() string

func (*AuthMessage) GetRequestID

func (x *AuthMessage) GetRequestID() string

func (*AuthMessage) GetTachyonAuthToken

func (x *AuthMessage) GetTachyonAuthToken() []byte

func (*AuthMessage) ProtoMessage

func (*AuthMessage) ProtoMessage()

func (*AuthMessage) ProtoReflect

func (x *AuthMessage) ProtoReflect() protoreflect.Message

func (*AuthMessage) Reset

func (x *AuthMessage) Reset()

func (*AuthMessage) String

func (x *AuthMessage) String() string

type AuthenticationContainer

type AuthenticationContainer struct {
	AuthMessage    *AuthMessage    `protobuf:"bytes,1,opt,name=authMessage,proto3" json:"authMessage,omitempty"`
	BrowserDetails *BrowserDetails `protobuf:"bytes,3,opt,name=browserDetails,proto3" json:"browserDetails,omitempty"`
	// Types that are assignable to Data:
	//
	//	*AuthenticationContainer_KeyData
	//	*AuthenticationContainer_DeviceData
	Data isAuthenticationContainer_Data `protobuf_oneof:"data"`
	// contains filtered or unexported fields
}

func (*AuthenticationContainer) Descriptor deprecated

func (*AuthenticationContainer) Descriptor() ([]byte, []int)

Deprecated: Use AuthenticationContainer.ProtoReflect.Descriptor instead.

func (*AuthenticationContainer) GetAuthMessage

func (x *AuthenticationContainer) GetAuthMessage() *AuthMessage

func (*AuthenticationContainer) GetBrowserDetails

func (x *AuthenticationContainer) GetBrowserDetails() *BrowserDetails

func (*AuthenticationContainer) GetData

func (m *AuthenticationContainer) GetData() isAuthenticationContainer_Data

func (*AuthenticationContainer) GetDeviceData

func (x *AuthenticationContainer) GetDeviceData() *CurrentDeviceData

func (*AuthenticationContainer) GetKeyData

func (x *AuthenticationContainer) GetKeyData() *KeyData

func (*AuthenticationContainer) ProtoMessage

func (*AuthenticationContainer) ProtoMessage()

func (*AuthenticationContainer) ProtoReflect

func (x *AuthenticationContainer) ProtoReflect() protoreflect.Message

func (*AuthenticationContainer) Reset

func (x *AuthenticationContainer) Reset()

func (*AuthenticationContainer) String

func (x *AuthenticationContainer) String() string

type AuthenticationContainer_DeviceData

type AuthenticationContainer_DeviceData struct {
	DeviceData *CurrentDeviceData `protobuf:"bytes,5,opt,name=deviceData,proto3,oneof"`
}

type AuthenticationContainer_KeyData

type AuthenticationContainer_KeyData struct {
	KeyData *KeyData `protobuf:"bytes,4,opt,name=keyData,proto3,oneof"`
}

type BoolMsg

type BoolMsg struct {
	Bool1 bool `protobuf:"varint,1,opt,name=bool1,proto3" json:"bool1,omitempty"`
	// contains filtered or unexported fields
}

func (*BoolMsg) Descriptor deprecated

func (*BoolMsg) Descriptor() ([]byte, []int)

Deprecated: Use BoolMsg.ProtoReflect.Descriptor instead.

func (*BoolMsg) GetBool1

func (x *BoolMsg) GetBool1() bool

func (*BoolMsg) ProtoMessage

func (*BoolMsg) ProtoMessage()

func (*BoolMsg) ProtoReflect

func (x *BoolMsg) ProtoReflect() protoreflect.Message

func (*BoolMsg) Reset

func (x *BoolMsg) Reset()

func (*BoolMsg) String

func (x *BoolMsg) String() string

type BooleanFields2

type BooleanFields2 struct {
	Bool1    bool     `protobuf:"varint,1,opt,name=bool1,proto3" json:"bool1,omitempty"`
	Bool2    bool     `protobuf:"varint,2,opt,name=bool2,proto3" json:"bool2,omitempty"`
	BoolMsg1 *BoolMsg `protobuf:"bytes,3,opt,name=boolMsg1,proto3" json:"boolMsg1,omitempty"`
	BoolMsg2 *BoolMsg `protobuf:"bytes,5,opt,name=boolMsg2,proto3" json:"boolMsg2,omitempty"`
	Bool3    bool     `protobuf:"varint,6,opt,name=bool3,proto3" json:"bool3,omitempty"`
	// contains filtered or unexported fields
}

func (*BooleanFields2) Descriptor deprecated

func (*BooleanFields2) Descriptor() ([]byte, []int)

Deprecated: Use BooleanFields2.ProtoReflect.Descriptor instead.

func (*BooleanFields2) GetBool1

func (x *BooleanFields2) GetBool1() bool

func (*BooleanFields2) GetBool2

func (x *BooleanFields2) GetBool2() bool

func (*BooleanFields2) GetBool3

func (x *BooleanFields2) GetBool3() bool

func (*BooleanFields2) GetBoolMsg1

func (x *BooleanFields2) GetBoolMsg1() *BoolMsg

func (*BooleanFields2) GetBoolMsg2

func (x *BooleanFields2) GetBoolMsg2() *BoolMsg

func (*BooleanFields2) ProtoMessage

func (*BooleanFields2) ProtoMessage()

func (*BooleanFields2) ProtoReflect

func (x *BooleanFields2) ProtoReflect() protoreflect.Message

func (*BooleanFields2) Reset

func (x *BooleanFields2) Reset()

func (*BooleanFields2) String

func (x *BooleanFields2) String() string

type BooleanFields3

type BooleanFields3 struct {
	Bool1 bool `protobuf:"varint,1,opt,name=bool1,proto3" json:"bool1,omitempty"`
	Bool3 bool `protobuf:"varint,3,opt,name=bool3,proto3" json:"bool3,omitempty"`
	Bool4 bool `protobuf:"varint,4,opt,name=bool4,proto3" json:"bool4,omitempty"`
	Bool5 bool `protobuf:"varint,5,opt,name=bool5,proto3" json:"bool5,omitempty"`
	Bool6 bool `protobuf:"varint,6,opt,name=bool6,proto3" json:"bool6,omitempty"`
	Bool7 bool `protobuf:"varint,7,opt,name=bool7,proto3" json:"bool7,omitempty"`
	Bool8 bool `protobuf:"varint,8,opt,name=bool8,proto3" json:"bool8,omitempty"`
	Bool9 bool `protobuf:"varint,9,opt,name=bool9,proto3" json:"bool9,omitempty"`
	// contains filtered or unexported fields
}

func (*BooleanFields3) Descriptor deprecated

func (*BooleanFields3) Descriptor() ([]byte, []int)

Deprecated: Use BooleanFields3.ProtoReflect.Descriptor instead.

func (*BooleanFields3) GetBool1

func (x *BooleanFields3) GetBool1() bool

func (*BooleanFields3) GetBool3

func (x *BooleanFields3) GetBool3() bool

func (*BooleanFields3) GetBool4

func (x *BooleanFields3) GetBool4() bool

func (*BooleanFields3) GetBool5

func (x *BooleanFields3) GetBool5() bool

func (*BooleanFields3) GetBool6

func (x *BooleanFields3) GetBool6() bool

func (*BooleanFields3) GetBool7

func (x *BooleanFields3) GetBool7() bool

func (*BooleanFields3) GetBool8

func (x *BooleanFields3) GetBool8() bool

func (*BooleanFields3) GetBool9

func (x *BooleanFields3) GetBool9() bool

func (*BooleanFields3) ProtoMessage

func (*BooleanFields3) ProtoMessage()

func (*BooleanFields3) ProtoReflect

func (x *BooleanFields3) ProtoReflect() protoreflect.Message

func (*BooleanFields3) Reset

func (x *BooleanFields3) Reset()

func (*BooleanFields3) String

func (x *BooleanFields3) String() string

type BrowserDetails

type BrowserDetails struct {
	UserAgent   string      `protobuf:"bytes,1,opt,name=userAgent,proto3" json:"userAgent,omitempty"`
	BrowserType BrowserType `protobuf:"varint,2,opt,name=browserType,proto3,enum=authentication.BrowserType" json:"browserType,omitempty"`
	OS          string      `protobuf:"bytes,3,opt,name=OS,proto3" json:"OS,omitempty"`
	DeviceType  DeviceType  `protobuf:"varint,6,opt,name=deviceType,proto3,enum=authentication.DeviceType" json:"deviceType,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserDetails) Descriptor deprecated

func (*BrowserDetails) Descriptor() ([]byte, []int)

Deprecated: Use BrowserDetails.ProtoReflect.Descriptor instead.

func (*BrowserDetails) GetBrowserType

func (x *BrowserDetails) GetBrowserType() BrowserType

func (*BrowserDetails) GetDeviceType

func (x *BrowserDetails) GetDeviceType() DeviceType

func (*BrowserDetails) GetOS

func (x *BrowserDetails) GetOS() string

func (*BrowserDetails) GetUserAgent

func (x *BrowserDetails) GetUserAgent() string

func (*BrowserDetails) ProtoMessage

func (*BrowserDetails) ProtoMessage()

func (*BrowserDetails) ProtoReflect

func (x *BrowserDetails) ProtoReflect() protoreflect.Message

func (*BrowserDetails) Reset

func (x *BrowserDetails) Reset()

func (*BrowserDetails) String

func (x *BrowserDetails) String() string

type BrowserPresenceCheckEvent

type BrowserPresenceCheckEvent struct {
	// contains filtered or unexported fields
}

func (*BrowserPresenceCheckEvent) Descriptor deprecated

func (*BrowserPresenceCheckEvent) Descriptor() ([]byte, []int)

Deprecated: Use BrowserPresenceCheckEvent.ProtoReflect.Descriptor instead.

func (*BrowserPresenceCheckEvent) ProtoMessage

func (*BrowserPresenceCheckEvent) ProtoMessage()

func (*BrowserPresenceCheckEvent) ProtoReflect

func (*BrowserPresenceCheckEvent) Reset

func (x *BrowserPresenceCheckEvent) Reset()

func (*BrowserPresenceCheckEvent) String

func (x *BrowserPresenceCheckEvent) String() string

type BrowserType

type BrowserType int32
const (
	BrowserType_UNKNOWN_BROWSER_TYPE BrowserType = 0
	BrowserType_OTHER                BrowserType = 1
	BrowserType_CHROME               BrowserType = 2
	BrowserType_FIREFOX              BrowserType = 3
	BrowserType_SAFARI               BrowserType = 4
	BrowserType_OPERA                BrowserType = 5
	BrowserType_IE                   BrowserType = 6
	BrowserType_EDGE                 BrowserType = 7
)

func (BrowserType) Descriptor

func (BrowserType) Enum

func (x BrowserType) Enum() *BrowserType

func (BrowserType) EnumDescriptor deprecated

func (BrowserType) EnumDescriptor() ([]byte, []int)

Deprecated: Use BrowserType.Descriptor instead.

func (BrowserType) Number

func (x BrowserType) Number() protoreflect.EnumNumber

func (BrowserType) String

func (x BrowserType) String() string

func (BrowserType) Type

type BugleRoute

type BugleRoute int32
const (
	BugleRoute_Unknown   BugleRoute = 0
	BugleRoute_DataEvent BugleRoute = 19
	BugleRoute_PairEvent BugleRoute = 14
	BugleRoute_GaiaEvent BugleRoute = 7
)

func (BugleRoute) Descriptor

func (BugleRoute) Descriptor() protoreflect.EnumDescriptor

func (BugleRoute) Enum

func (x BugleRoute) Enum() *BugleRoute

func (BugleRoute) EnumDescriptor deprecated

func (BugleRoute) EnumDescriptor() ([]byte, []int)

Deprecated: Use BugleRoute.Descriptor instead.

func (BugleRoute) Number

func (x BugleRoute) Number() protoreflect.EnumNumber

func (BugleRoute) String

func (x BugleRoute) String() string

func (BugleRoute) Type

type Config

type Config struct {
	ClientVersion string             `protobuf:"bytes,1,opt,name=clientVersion,proto3" json:"clientVersion,omitempty"`
	ServerVersion string             `protobuf:"bytes,2,opt,name=serverVersion,proto3" json:"serverVersion,omitempty"`
	IntFlags      []*Config_Flag     `protobuf:"bytes,3,rep,name=intFlags,proto3" json:"intFlags,omitempty"`
	MoreFlags     *Config_MoreFlags  `protobuf:"bytes,4,opt,name=moreFlags,proto3" json:"moreFlags,omitempty"`
	DeviceInfo    *Config_DeviceInfo `protobuf:"bytes,5,opt,name=deviceInfo,proto3" json:"deviceInfo,omitempty"`
	// item 6 seems like a list of device infos without device ID?
	CountryCode   string   `protobuf:"bytes,7,opt,name=countryCode,proto3" json:"countryCode,omitempty"`
	UnknownInts   []uint32 `protobuf:"varint,8,rep,packed,name=unknownInts,proto3" json:"unknownInts,omitempty"`
	GeneratedAtMS int64    `protobuf:"varint,9,opt,name=generatedAtMS,proto3" json:"generatedAtMS,omitempty"`
	// contains filtered or unexported fields
}

func (*Config) Descriptor deprecated

func (*Config) Descriptor() ([]byte, []int)

Deprecated: Use Config.ProtoReflect.Descriptor instead.

func (*Config) GetClientVersion

func (x *Config) GetClientVersion() string

func (*Config) GetCountryCode

func (x *Config) GetCountryCode() string

func (*Config) GetDeviceInfo

func (x *Config) GetDeviceInfo() *Config_DeviceInfo

func (*Config) GetGeneratedAtMS

func (x *Config) GetGeneratedAtMS() int64

func (*Config) GetIntFlags

func (x *Config) GetIntFlags() []*Config_Flag

func (*Config) GetMoreFlags

func (x *Config) GetMoreFlags() *Config_MoreFlags

func (*Config) GetServerVersion

func (x *Config) GetServerVersion() string

func (*Config) GetUnknownInts

func (x *Config) GetUnknownInts() []uint32

func (*Config) ParsedClientVersion

func (c *Config) ParsedClientVersion() (*ConfigVersion, error)

func (*Config) ProtoMessage

func (*Config) ProtoMessage()

func (*Config) ProtoReflect

func (x *Config) ProtoReflect() protoreflect.Message

func (*Config) Reset

func (x *Config) Reset()

func (*Config) String

func (x *Config) String() string

type ConfigVersion

type ConfigVersion struct {
	Year  int32 `protobuf:"varint,3,opt,name=Year,proto3" json:"Year,omitempty"`
	Month int32 `protobuf:"varint,4,opt,name=Month,proto3" json:"Month,omitempty"`
	Day   int32 `protobuf:"varint,5,opt,name=Day,proto3" json:"Day,omitempty"`
	V1    int32 `protobuf:"varint,7,opt,name=V1,proto3" json:"V1,omitempty"`
	V2    int32 `protobuf:"varint,9,opt,name=V2,proto3" json:"V2,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigVersion) Descriptor deprecated

func (*ConfigVersion) Descriptor() ([]byte, []int)

Deprecated: Use ConfigVersion.ProtoReflect.Descriptor instead.

func (*ConfigVersion) GetDay

func (x *ConfigVersion) GetDay() int32

func (*ConfigVersion) GetMonth

func (x *ConfigVersion) GetMonth() int32

func (*ConfigVersion) GetV1

func (x *ConfigVersion) GetV1() int32

func (*ConfigVersion) GetV2

func (x *ConfigVersion) GetV2() int32

func (*ConfigVersion) GetYear

func (x *ConfigVersion) GetYear() int32

func (*ConfigVersion) ProtoMessage

func (*ConfigVersion) ProtoMessage()

func (*ConfigVersion) ProtoReflect

func (x *ConfigVersion) ProtoReflect() protoreflect.Message

func (*ConfigVersion) Reset

func (x *ConfigVersion) Reset()

func (*ConfigVersion) String

func (x *ConfigVersion) String() string

type Config_DeviceInfo

type Config_DeviceInfo struct {
	Email    string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	Zero     string `protobuf:"bytes,3,opt,name=zero,proto3" json:"zero,omitempty"`
	DeviceID string `protobuf:"bytes,4,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_DeviceInfo) Descriptor deprecated

func (*Config_DeviceInfo) Descriptor() ([]byte, []int)

Deprecated: Use Config_DeviceInfo.ProtoReflect.Descriptor instead.

func (*Config_DeviceInfo) GetDeviceID

func (x *Config_DeviceInfo) GetDeviceID() string

func (*Config_DeviceInfo) GetEmail

func (x *Config_DeviceInfo) GetEmail() string

func (*Config_DeviceInfo) GetZero

func (x *Config_DeviceInfo) GetZero() string

func (*Config_DeviceInfo) ProtoMessage

func (*Config_DeviceInfo) ProtoMessage()

func (*Config_DeviceInfo) ProtoReflect

func (x *Config_DeviceInfo) ProtoReflect() protoreflect.Message

func (*Config_DeviceInfo) Reset

func (x *Config_DeviceInfo) Reset()

func (*Config_DeviceInfo) String

func (x *Config_DeviceInfo) String() string

type Config_Flag

type Config_Flag struct {
	Key           string  `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value         int32   `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	UnknownField4 *string `protobuf:"bytes,4,opt,name=unknownField4,proto3,oneof" json:"unknownField4,omitempty"`
	UnknownField5 *string `protobuf:"bytes,5,opt,name=unknownField5,proto3,oneof" json:"unknownField5,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_Flag) Descriptor deprecated

func (*Config_Flag) Descriptor() ([]byte, []int)

Deprecated: Use Config_Flag.ProtoReflect.Descriptor instead.

func (*Config_Flag) GetKey

func (x *Config_Flag) GetKey() string

func (*Config_Flag) GetUnknownField4

func (x *Config_Flag) GetUnknownField4() string

func (*Config_Flag) GetUnknownField5

func (x *Config_Flag) GetUnknownField5() string

func (*Config_Flag) GetValue

func (x *Config_Flag) GetValue() int32

func (*Config_Flag) ProtoMessage

func (*Config_Flag) ProtoMessage()

func (*Config_Flag) ProtoReflect

func (x *Config_Flag) ProtoReflect() protoreflect.Message

func (*Config_Flag) Reset

func (x *Config_Flag) Reset()

func (*Config_Flag) String

func (x *Config_Flag) String() string

type Config_MoreFlags

type Config_MoreFlags struct {
	WrappedFlags []*Config_WrappedFlag `protobuf:"bytes,1,rep,name=wrappedFlags,proto3" json:"wrappedFlags,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_MoreFlags) Descriptor deprecated

func (*Config_MoreFlags) Descriptor() ([]byte, []int)

Deprecated: Use Config_MoreFlags.ProtoReflect.Descriptor instead.

func (*Config_MoreFlags) GetWrappedFlags

func (x *Config_MoreFlags) GetWrappedFlags() []*Config_WrappedFlag

func (*Config_MoreFlags) ProtoMessage

func (*Config_MoreFlags) ProtoMessage()

func (*Config_MoreFlags) ProtoReflect

func (x *Config_MoreFlags) ProtoReflect() protoreflect.Message

func (*Config_MoreFlags) Reset

func (x *Config_MoreFlags) Reset()

func (*Config_MoreFlags) String

func (x *Config_MoreFlags) String() string

type Config_WrappedFlag

type Config_WrappedFlag struct {
	Key   string                    `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value *Config_WrappedFlag_Value `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_WrappedFlag) Descriptor deprecated

func (*Config_WrappedFlag) Descriptor() ([]byte, []int)

Deprecated: Use Config_WrappedFlag.ProtoReflect.Descriptor instead.

func (*Config_WrappedFlag) GetKey

func (x *Config_WrappedFlag) GetKey() string

func (*Config_WrappedFlag) GetValue

func (*Config_WrappedFlag) ProtoMessage

func (*Config_WrappedFlag) ProtoMessage()

func (*Config_WrappedFlag) ProtoReflect

func (x *Config_WrappedFlag) ProtoReflect() protoreflect.Message

func (*Config_WrappedFlag) Reset

func (x *Config_WrappedFlag) Reset()

func (*Config_WrappedFlag) String

func (x *Config_WrappedFlag) String() string

type Config_WrappedFlag_Value

type Config_WrappedFlag_Value struct {

	// Types that are assignable to Value:
	//
	//	*Config_WrappedFlag_Value_IntVal
	//	*Config_WrappedFlag_Value_StrVal
	Value isConfig_WrappedFlag_Value_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*Config_WrappedFlag_Value) Descriptor deprecated

func (*Config_WrappedFlag_Value) Descriptor() ([]byte, []int)

Deprecated: Use Config_WrappedFlag_Value.ProtoReflect.Descriptor instead.

func (*Config_WrappedFlag_Value) GetIntVal

func (x *Config_WrappedFlag_Value) GetIntVal() int32

func (*Config_WrappedFlag_Value) GetStrVal

func (x *Config_WrappedFlag_Value) GetStrVal() string

func (*Config_WrappedFlag_Value) GetValue

func (m *Config_WrappedFlag_Value) GetValue() isConfig_WrappedFlag_Value_Value

func (*Config_WrappedFlag_Value) ProtoMessage

func (*Config_WrappedFlag_Value) ProtoMessage()

func (*Config_WrappedFlag_Value) ProtoReflect

func (x *Config_WrappedFlag_Value) ProtoReflect() protoreflect.Message

func (*Config_WrappedFlag_Value) Reset

func (x *Config_WrappedFlag_Value) Reset()

func (*Config_WrappedFlag_Value) String

func (x *Config_WrappedFlag_Value) String() string

type Config_WrappedFlag_Value_IntVal

type Config_WrappedFlag_Value_IntVal struct {
	IntVal int32 `protobuf:"varint,2,opt,name=intVal,proto3,oneof"`
}

type Config_WrappedFlag_Value_StrVal

type Config_WrappedFlag_Value_StrVal struct {
	StrVal string `protobuf:"bytes,3,opt,name=strVal,proto3,oneof"`
}

type Contact

type Contact struct {
	ParticipantID  string         `protobuf:"bytes,1,opt,name=participantID,proto3" json:"participantID,omitempty"`
	Name           string         `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Number         *ContactNumber `protobuf:"bytes,3,opt,name=number,proto3" json:"number,omitempty"`
	AvatarHexColor string         `protobuf:"bytes,7,opt,name=avatarHexColor,proto3" json:"avatarHexColor,omitempty"`
	UnknownBool    bool           `protobuf:"varint,10,opt,name=unknownBool,proto3" json:"unknownBool,omitempty"`
	ContactID      string         `protobuf:"bytes,11,opt,name=contactID,proto3" json:"contactID,omitempty"`
	// contains filtered or unexported fields
}

func (*Contact) Descriptor deprecated

func (*Contact) Descriptor() ([]byte, []int)

Deprecated: Use Contact.ProtoReflect.Descriptor instead.

func (*Contact) GetAvatarHexColor

func (x *Contact) GetAvatarHexColor() string

func (*Contact) GetContactID

func (x *Contact) GetContactID() string

func (*Contact) GetName

func (x *Contact) GetName() string

func (*Contact) GetNumber

func (x *Contact) GetNumber() *ContactNumber

func (*Contact) GetParticipantID

func (x *Contact) GetParticipantID() string

func (*Contact) GetUnknownBool

func (x *Contact) GetUnknownBool() bool

func (*Contact) ProtoMessage

func (*Contact) ProtoMessage()

func (*Contact) ProtoReflect

func (x *Contact) ProtoReflect() protoreflect.Message

func (*Contact) Reset

func (x *Contact) Reset()

func (*Contact) String

func (x *Contact) String() string

type ContactNumber

type ContactNumber struct {

	// Might be 2 for contact and 7 for user input?
	MysteriousInt   int32   `protobuf:"varint,1,opt,name=mysteriousInt,proto3" json:"mysteriousInt,omitempty"`
	Number          string  `protobuf:"bytes,2,opt,name=number,proto3" json:"number,omitempty"`
	Number2         string  `protobuf:"bytes,3,opt,name=number2,proto3" json:"number2,omitempty"`
	FormattedNumber *string `protobuf:"bytes,4,opt,name=formattedNumber,proto3,oneof" json:"formattedNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*ContactNumber) Descriptor deprecated

func (*ContactNumber) Descriptor() ([]byte, []int)

Deprecated: Use ContactNumber.ProtoReflect.Descriptor instead.

func (*ContactNumber) GetFormattedNumber

func (x *ContactNumber) GetFormattedNumber() string

func (*ContactNumber) GetMysteriousInt

func (x *ContactNumber) GetMysteriousInt() int32

func (*ContactNumber) GetNumber

func (x *ContactNumber) GetNumber() string

func (*ContactNumber) GetNumber2

func (x *ContactNumber) GetNumber2() string

func (*ContactNumber) ProtoMessage

func (*ContactNumber) ProtoMessage()

func (*ContactNumber) ProtoReflect

func (x *ContactNumber) ProtoReflect() protoreflect.Message

func (*ContactNumber) Reset

func (x *ContactNumber) Reset()

func (*ContactNumber) String

func (x *ContactNumber) String() string

type Conversation

type Conversation struct {
	ConversationID       string               `protobuf:"bytes,1,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	Name                 string               `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	LatestMessage        *LatestMessage       `protobuf:"bytes,4,opt,name=latestMessage,proto3" json:"latestMessage,omitempty"`
	LastMessageTimestamp int64                `protobuf:"varint,5,opt,name=lastMessageTimestamp,proto3" json:"lastMessageTimestamp,omitempty"`
	Unread               bool                 `protobuf:"varint,6,opt,name=unread,proto3" json:"unread,omitempty"`
	IsGroupChat          bool                 `protobuf:"varint,10,opt,name=isGroupChat,proto3" json:"isGroupChat,omitempty"` // not certain
	DefaultOutgoingID    string               `protobuf:"bytes,11,opt,name=defaultOutgoingID,proto3" json:"defaultOutgoingID,omitempty"`
	Status               ConversationStatus   `protobuf:"varint,12,opt,name=status,proto3,enum=conversations.ConversationStatus" json:"status,omitempty"`
	ReadOnly             bool                 `protobuf:"varint,13,opt,name=readOnly,proto3" json:"readOnly,omitempty"`
	AvatarHexColor       string               `protobuf:"bytes,15,opt,name=avatarHexColor,proto3" json:"avatarHexColor,omitempty"`
	LatestMessageID      string               `protobuf:"bytes,17,opt,name=latestMessageID,proto3" json:"latestMessageID,omitempty"`
	SendMode             ConversationSendMode `protobuf:"varint,18,opt,name=sendMode,proto3,enum=conversations.ConversationSendMode" json:"sendMode,omitempty"`
	Participants         []*Participant       `protobuf:"bytes,20,rep,name=participants,proto3" json:"participants,omitempty"`
	OtherParticipants    []string             `protobuf:"bytes,21,rep,name=otherParticipants,proto3" json:"otherParticipants,omitempty"` // participant ids excluding me
	Type                 ConversationType     `protobuf:"varint,22,opt,name=type,proto3,enum=conversations.ConversationType" json:"type,omitempty"`
	SubType              bool                 `protobuf:"varint,24,opt,name=subType,proto3" json:"subType,omitempty"`
	Pinned               bool                 `protobuf:"varint,26,opt,name=pinned,proto3" json:"pinned,omitempty"`
	UnknownTimestamp     int64                `protobuf:"varint,28,opt,name=unknownTimestamp,proto3" json:"unknownTimestamp,omitempty"` // set to lastMessageTimestamp + 1000 when marking as unread?
	ThirdType            bool                 `protobuf:"varint,29,opt,name=thirdType,proto3" json:"thirdType,omitempty"`
	// contains filtered or unexported fields
}

func (*Conversation) Descriptor deprecated

func (*Conversation) Descriptor() ([]byte, []int)

Deprecated: Use Conversation.ProtoReflect.Descriptor instead.

func (*Conversation) GetAvatarHexColor

func (x *Conversation) GetAvatarHexColor() string

func (*Conversation) GetConversationID

func (x *Conversation) GetConversationID() string

func (*Conversation) GetDefaultOutgoingID

func (x *Conversation) GetDefaultOutgoingID() string

func (*Conversation) GetIsGroupChat

func (x *Conversation) GetIsGroupChat() bool

func (*Conversation) GetLastMessageTimestamp

func (x *Conversation) GetLastMessageTimestamp() int64

func (*Conversation) GetLatestMessage

func (x *Conversation) GetLatestMessage() *LatestMessage

func (*Conversation) GetLatestMessageID

func (x *Conversation) GetLatestMessageID() string

func (*Conversation) GetName

func (x *Conversation) GetName() string

func (*Conversation) GetOtherParticipants

func (x *Conversation) GetOtherParticipants() []string

func (*Conversation) GetParticipants

func (x *Conversation) GetParticipants() []*Participant

func (*Conversation) GetPinned

func (x *Conversation) GetPinned() bool

func (*Conversation) GetReadOnly

func (x *Conversation) GetReadOnly() bool

func (*Conversation) GetSendMode

func (x *Conversation) GetSendMode() ConversationSendMode

func (*Conversation) GetStatus

func (x *Conversation) GetStatus() ConversationStatus

func (*Conversation) GetSubType

func (x *Conversation) GetSubType() bool

func (*Conversation) GetThirdType

func (x *Conversation) GetThirdType() bool

func (*Conversation) GetType

func (x *Conversation) GetType() ConversationType

func (*Conversation) GetUnknownTimestamp

func (x *Conversation) GetUnknownTimestamp() int64

func (*Conversation) GetUnread

func (x *Conversation) GetUnread() bool

func (*Conversation) ProtoMessage

func (*Conversation) ProtoMessage()

func (*Conversation) ProtoReflect

func (x *Conversation) ProtoReflect() protoreflect.Message

func (*Conversation) Reset

func (x *Conversation) Reset()

func (*Conversation) String

func (x *Conversation) String() string

type ConversationAction5

type ConversationAction5 struct {
	Field2 bool `protobuf:"varint,2,opt,name=field2,proto3" json:"field2,omitempty"`
	// contains filtered or unexported fields
}

func (*ConversationAction5) Descriptor deprecated

func (*ConversationAction5) Descriptor() ([]byte, []int)

Deprecated: Use ConversationAction5.ProtoReflect.Descriptor instead.

func (*ConversationAction5) GetField2

func (x *ConversationAction5) GetField2() bool

func (*ConversationAction5) ProtoMessage

func (*ConversationAction5) ProtoMessage()

func (*ConversationAction5) ProtoReflect

func (x *ConversationAction5) ProtoReflect() protoreflect.Message

func (*ConversationAction5) Reset

func (x *ConversationAction5) Reset()

func (*ConversationAction5) String

func (x *ConversationAction5) String() string

type ConversationActionStatus

type ConversationActionStatus int32
const (
	ConversationActionStatus_UNKNOWN_ACTION_STATUS ConversationActionStatus = 0
	ConversationActionStatus_UNBLOCK               ConversationActionStatus = 2
	ConversationActionStatus_BLOCK                 ConversationActionStatus = 7
	ConversationActionStatus_BLOCK_AND_REPORT      ConversationActionStatus = 8
)

func (ConversationActionStatus) Descriptor

func (ConversationActionStatus) Enum

func (ConversationActionStatus) EnumDescriptor deprecated

func (ConversationActionStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use ConversationActionStatus.Descriptor instead.

func (ConversationActionStatus) Number

func (ConversationActionStatus) String

func (x ConversationActionStatus) String() string

func (ConversationActionStatus) Type

type ConversationEvent

type ConversationEvent struct {
	Data []*Conversation `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ConversationEvent) Descriptor deprecated

func (*ConversationEvent) Descriptor() ([]byte, []int)

Deprecated: Use ConversationEvent.ProtoReflect.Descriptor instead.

func (*ConversationEvent) GetData

func (x *ConversationEvent) GetData() []*Conversation

func (*ConversationEvent) ProtoMessage

func (*ConversationEvent) ProtoMessage()

func (*ConversationEvent) ProtoReflect

func (x *ConversationEvent) ProtoReflect() protoreflect.Message

func (*ConversationEvent) Reset

func (x *ConversationEvent) Reset()

func (*ConversationEvent) String

func (x *ConversationEvent) String() string

type ConversationMuteStatus

type ConversationMuteStatus int32
const (
	ConversationMuteStatus_UNMUTE ConversationMuteStatus = 0
	ConversationMuteStatus_MUTE   ConversationMuteStatus = 1
)

func (ConversationMuteStatus) Descriptor

func (ConversationMuteStatus) Enum

func (ConversationMuteStatus) EnumDescriptor deprecated

func (ConversationMuteStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use ConversationMuteStatus.Descriptor instead.

func (ConversationMuteStatus) Number

func (ConversationMuteStatus) String

func (x ConversationMuteStatus) String() string

func (ConversationMuteStatus) Type

type ConversationSendMode

type ConversationSendMode int32
const (
	ConversationSendMode_SEND_MODE_AUTO      ConversationSendMode = 0
	ConversationSendMode_SEND_MODE_XMS       ConversationSendMode = 1
	ConversationSendMode_SEND_MODE_XMS_LATCH ConversationSendMode = 2
)

func (ConversationSendMode) Descriptor

func (ConversationSendMode) Enum

func (ConversationSendMode) EnumDescriptor deprecated

func (ConversationSendMode) EnumDescriptor() ([]byte, []int)

Deprecated: Use ConversationSendMode.Descriptor instead.

func (ConversationSendMode) Number

func (ConversationSendMode) String

func (x ConversationSendMode) String() string

func (ConversationSendMode) Type

type ConversationStatus

type ConversationStatus int32
const (
	ConversationStatus_UNKNOWN_CONVERSATION_STATUS ConversationStatus = 0
	ConversationStatus_ACTIVE                      ConversationStatus = 1
	ConversationStatus_ARCHIVED                    ConversationStatus = 2
	ConversationStatus_DELETED                     ConversationStatus = 3
	ConversationStatus_KEEP_ARCHIVED               ConversationStatus = 4
	ConversationStatus_SPAM_FOLDER                 ConversationStatus = 5
	ConversationStatus_BLOCKED_FOLDER              ConversationStatus = 6
)

func (ConversationStatus) Descriptor

func (ConversationStatus) Enum

func (ConversationStatus) EnumDescriptor deprecated

func (ConversationStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use ConversationStatus.Descriptor instead.

func (ConversationStatus) Number

func (ConversationStatus) String

func (x ConversationStatus) String() string

func (ConversationStatus) Type

type ConversationType

type ConversationType int32
const (
	ConversationType_UNKNOWN_CONVERSATION_TYPE ConversationType = 0
	ConversationType_SMS                       ConversationType = 1
	ConversationType_RCS                       ConversationType = 2
)

func (ConversationType) Descriptor

func (ConversationType) Enum

func (ConversationType) EnumDescriptor deprecated

func (ConversationType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ConversationType.Descriptor instead.

func (ConversationType) Number

func (ConversationType) String

func (x ConversationType) String() string

func (ConversationType) Type

type CoordinateMessage

type CoordinateMessage struct {
	Coord1 int64 `protobuf:"varint,2,opt,name=coord1,proto3" json:"coord1,omitempty"`
	// contains filtered or unexported fields
}

func (*CoordinateMessage) Descriptor deprecated

func (*CoordinateMessage) Descriptor() ([]byte, []int)

Deprecated: Use CoordinateMessage.ProtoReflect.Descriptor instead.

func (*CoordinateMessage) GetCoord1

func (x *CoordinateMessage) GetCoord1() int64

func (*CoordinateMessage) ProtoMessage

func (*CoordinateMessage) ProtoMessage()

func (*CoordinateMessage) ProtoReflect

func (x *CoordinateMessage) ProtoReflect() protoreflect.Message

func (*CoordinateMessage) Reset

func (x *CoordinateMessage) Reset()

func (*CoordinateMessage) String

func (x *CoordinateMessage) String() string

type CurrentDeviceData

type CurrentDeviceData struct {
	Browser *Device `protobuf:"bytes,1,opt,name=browser,proto3" json:"browser,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrentDeviceData) Descriptor deprecated

func (*CurrentDeviceData) Descriptor() ([]byte, []int)

Deprecated: Use CurrentDeviceData.ProtoReflect.Descriptor instead.

func (*CurrentDeviceData) GetBrowser

func (x *CurrentDeviceData) GetBrowser() *Device

func (*CurrentDeviceData) ProtoMessage

func (*CurrentDeviceData) ProtoMessage()

func (*CurrentDeviceData) ProtoReflect

func (x *CurrentDeviceData) ProtoReflect() protoreflect.Message

func (*CurrentDeviceData) Reset

func (x *CurrentDeviceData) Reset()

func (*CurrentDeviceData) String

func (x *CurrentDeviceData) String() string

type Cursor

type Cursor struct {
	LastItemID        string `protobuf:"bytes,1,opt,name=lastItemID,proto3" json:"lastItemID,omitempty"`
	LastItemTimestamp int64  `protobuf:"varint,2,opt,name=lastItemTimestamp,proto3" json:"lastItemTimestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*Cursor) Descriptor deprecated

func (*Cursor) Descriptor() ([]byte, []int)

Deprecated: Use Cursor.ProtoReflect.Descriptor instead.

func (*Cursor) GetLastItemID

func (x *Cursor) GetLastItemID() string

func (*Cursor) GetLastItemTimestamp

func (x *Cursor) GetLastItemTimestamp() int64

func (*Cursor) ProtoMessage

func (*Cursor) ProtoMessage()

func (*Cursor) ProtoReflect

func (x *Cursor) ProtoReflect() protoreflect.Message

func (*Cursor) Reset

func (x *Cursor) Reset()

func (*Cursor) String

func (x *Cursor) String() string

type CustomEmojiData

type CustomEmojiData struct {
	Uuid        string                 `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	UnknownInt4 *int32                 `protobuf:"varint,4,opt,name=unknownInt4,proto3,oneof" json:"unknownInt4,omitempty"`
	InnerData   *CustomEmojiData_Inner `protobuf:"bytes,100,opt,name=innerData,proto3" json:"innerData,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomEmojiData) Descriptor deprecated

func (*CustomEmojiData) Descriptor() ([]byte, []int)

Deprecated: Use CustomEmojiData.ProtoReflect.Descriptor instead.

func (*CustomEmojiData) GetInnerData

func (x *CustomEmojiData) GetInnerData() *CustomEmojiData_Inner

func (*CustomEmojiData) GetUnknownInt4

func (x *CustomEmojiData) GetUnknownInt4() int32

func (*CustomEmojiData) GetUuid

func (x *CustomEmojiData) GetUuid() string

func (*CustomEmojiData) ProtoMessage

func (*CustomEmojiData) ProtoMessage()

func (*CustomEmojiData) ProtoReflect

func (x *CustomEmojiData) ProtoReflect() protoreflect.Message

func (*CustomEmojiData) Reset

func (x *CustomEmojiData) Reset()

func (*CustomEmojiData) String

func (x *CustomEmojiData) String() string

type CustomEmojiData_Inner

type CustomEmojiData_Inner struct {
	UnknownString *string                                 `protobuf:"bytes,100,opt,name=unknownString,proto3,oneof" json:"unknownString,omitempty"`
	First         *CustomEmojiData_Inner_ImageData        `protobuf:"bytes,101,opt,name=first,proto3" json:"first,omitempty"`
	Second        *CustomEmojiData_Inner_WrappedImageData `protobuf:"bytes,102,opt,name=second,proto3" json:"second,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomEmojiData_Inner) Descriptor deprecated

func (*CustomEmojiData_Inner) Descriptor() ([]byte, []int)

Deprecated: Use CustomEmojiData_Inner.ProtoReflect.Descriptor instead.

func (*CustomEmojiData_Inner) GetFirst

func (*CustomEmojiData_Inner) GetSecond

func (*CustomEmojiData_Inner) GetUnknownString

func (x *CustomEmojiData_Inner) GetUnknownString() string

func (*CustomEmojiData_Inner) ProtoMessage

func (*CustomEmojiData_Inner) ProtoMessage()

func (*CustomEmojiData_Inner) ProtoReflect

func (x *CustomEmojiData_Inner) ProtoReflect() protoreflect.Message

func (*CustomEmojiData_Inner) Reset

func (x *CustomEmojiData_Inner) Reset()

func (*CustomEmojiData_Inner) String

func (x *CustomEmojiData_Inner) String() string

type CustomEmojiData_Inner_ImageData

type CustomEmojiData_Inner_ImageData struct {
	MimeType       string  `protobuf:"bytes,1,opt,name=mimeType,proto3" json:"mimeType,omitempty"`
	Uri            string  `protobuf:"bytes,2,opt,name=uri,proto3" json:"uri,omitempty"`
	UnknownInt3    *int32  `protobuf:"varint,3,opt,name=unknownInt3,proto3,oneof" json:"unknownInt3,omitempty"`
	UnknownString5 *string `protobuf:"bytes,5,opt,name=unknownString5,proto3,oneof" json:"unknownString5,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomEmojiData_Inner_ImageData) Descriptor deprecated

func (*CustomEmojiData_Inner_ImageData) Descriptor() ([]byte, []int)

Deprecated: Use CustomEmojiData_Inner_ImageData.ProtoReflect.Descriptor instead.

func (*CustomEmojiData_Inner_ImageData) GetMimeType

func (x *CustomEmojiData_Inner_ImageData) GetMimeType() string

func (*CustomEmojiData_Inner_ImageData) GetUnknownInt3

func (x *CustomEmojiData_Inner_ImageData) GetUnknownInt3() int32

func (*CustomEmojiData_Inner_ImageData) GetUnknownString5

func (x *CustomEmojiData_Inner_ImageData) GetUnknownString5() string

func (*CustomEmojiData_Inner_ImageData) GetUri

func (*CustomEmojiData_Inner_ImageData) ProtoMessage

func (*CustomEmojiData_Inner_ImageData) ProtoMessage()

func (*CustomEmojiData_Inner_ImageData) ProtoReflect

func (*CustomEmojiData_Inner_ImageData) Reset

func (*CustomEmojiData_Inner_ImageData) String

type CustomEmojiData_Inner_WrappedImageData

type CustomEmojiData_Inner_WrappedImageData struct {
	Data *CustomEmojiData_Inner_WrappedImageData_ImageData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomEmojiData_Inner_WrappedImageData) Descriptor deprecated

func (*CustomEmojiData_Inner_WrappedImageData) Descriptor() ([]byte, []int)

Deprecated: Use CustomEmojiData_Inner_WrappedImageData.ProtoReflect.Descriptor instead.

func (*CustomEmojiData_Inner_WrappedImageData) GetData

func (*CustomEmojiData_Inner_WrappedImageData) ProtoMessage

func (*CustomEmojiData_Inner_WrappedImageData) ProtoReflect

func (*CustomEmojiData_Inner_WrappedImageData) Reset

func (*CustomEmojiData_Inner_WrappedImageData) String

type CustomEmojiData_Inner_WrappedImageData_ImageData

type CustomEmojiData_Inner_WrappedImageData_ImageData struct {
	UnknownInt1 int32  `protobuf:"varint,1,opt,name=unknownInt1,proto3" json:"unknownInt1,omitempty"`
	MimeType    string `protobuf:"bytes,2,opt,name=mimeType,proto3" json:"mimeType,omitempty"`
	Uri         string `protobuf:"bytes,3,opt,name=uri,proto3" json:"uri,omitempty"`
	Width       int32  `protobuf:"varint,5,opt,name=width,proto3" json:"width,omitempty"`
	Height      int32  `protobuf:"varint,6,opt,name=height,proto3" json:"height,omitempty"`
	UnknownInt7 *int32 `protobuf:"varint,7,opt,name=unknownInt7,proto3,oneof" json:"unknownInt7,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) Descriptor deprecated

Deprecated: Use CustomEmojiData_Inner_WrappedImageData_ImageData.ProtoReflect.Descriptor instead.

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) GetHeight

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) GetMimeType

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) GetUnknownInt1

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) GetUnknownInt7

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) GetUri

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) GetWidth

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) ProtoMessage

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) ProtoReflect

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) Reset

func (*CustomEmojiData_Inner_WrappedImageData_ImageData) String

type DeleteMessageRequest

type DeleteMessageRequest struct {
	MessageID string `protobuf:"bytes,2,opt,name=messageID,proto3" json:"messageID,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteMessageRequest) Descriptor deprecated

func (*DeleteMessageRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteMessageRequest.ProtoReflect.Descriptor instead.

func (*DeleteMessageRequest) GetMessageID

func (x *DeleteMessageRequest) GetMessageID() string

func (*DeleteMessageRequest) ProtoMessage

func (*DeleteMessageRequest) ProtoMessage()

func (*DeleteMessageRequest) ProtoReflect

func (x *DeleteMessageRequest) ProtoReflect() protoreflect.Message

func (*DeleteMessageRequest) Reset

func (x *DeleteMessageRequest) Reset()

func (*DeleteMessageRequest) String

func (x *DeleteMessageRequest) String() string

type DeleteMessageResponse

type DeleteMessageResponse struct {
	Success bool `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteMessageResponse) Descriptor deprecated

func (*DeleteMessageResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteMessageResponse.ProtoReflect.Descriptor instead.

func (*DeleteMessageResponse) GetSuccess

func (x *DeleteMessageResponse) GetSuccess() bool

func (*DeleteMessageResponse) ProtoMessage

func (*DeleteMessageResponse) ProtoMessage()

func (*DeleteMessageResponse) ProtoReflect

func (x *DeleteMessageResponse) ProtoReflect() protoreflect.Message

func (*DeleteMessageResponse) Reset

func (x *DeleteMessageResponse) Reset()

func (*DeleteMessageResponse) String

func (x *DeleteMessageResponse) String() string

type Device

type Device struct {
	UserID   int64  `protobuf:"varint,1,opt,name=userID,proto3" json:"userID,omitempty"`
	SourceID string `protobuf:"bytes,2,opt,name=sourceID,proto3" json:"sourceID,omitempty"`
	Network  string `protobuf:"bytes,3,opt,name=network,proto3" json:"network,omitempty"`
	// contains filtered or unexported fields
}

func (*Device) Descriptor deprecated

func (*Device) Descriptor() ([]byte, []int)

Deprecated: Use Device.ProtoReflect.Descriptor instead.

func (*Device) GetNetwork

func (x *Device) GetNetwork() string

func (*Device) GetSourceID

func (x *Device) GetSourceID() string

func (*Device) GetUserID

func (x *Device) GetUserID() int64

func (*Device) ProtoMessage

func (*Device) ProtoMessage()

func (*Device) ProtoReflect

func (x *Device) ProtoReflect() protoreflect.Message

func (*Device) Reset

func (x *Device) Reset()

func (*Device) String

func (x *Device) String() string

type DeviceType

type DeviceType int32
const (
	DeviceType_UNKNOWN_DEVICE_TYPE DeviceType = 0
	DeviceType_WEB                 DeviceType = 1
	DeviceType_TABLET              DeviceType = 2
	DeviceType_PWA                 DeviceType = 3
)

func (DeviceType) Descriptor

func (DeviceType) Descriptor() protoreflect.EnumDescriptor

func (DeviceType) Enum

func (x DeviceType) Enum() *DeviceType

func (DeviceType) EnumDescriptor deprecated

func (DeviceType) EnumDescriptor() ([]byte, []int)

Deprecated: Use DeviceType.Descriptor instead.

func (DeviceType) Number

func (x DeviceType) Number() protoreflect.EnumNumber

func (DeviceType) String

func (x DeviceType) String() string

func (DeviceType) Type

type DhPublicKey

type DhPublicKey struct {

	// Big-endian two's complement encoded group element
	Y []byte `protobuf:"bytes,1,opt,name=y,proto3" json:"y,omitempty"`
	// contains filtered or unexported fields
}

A convenience proto for encoding Diffie-Hellman public keys, for use only when Elliptic Curve based key exchanges are not possible. (Note that the group parameters must be specified separately)

func (*DhPublicKey) Descriptor deprecated

func (*DhPublicKey) Descriptor() ([]byte, []int)

Deprecated: Use DhPublicKey.ProtoReflect.Descriptor instead.

func (*DhPublicKey) GetY

func (x *DhPublicKey) GetY() []byte

func (*DhPublicKey) ProtoMessage

func (*DhPublicKey) ProtoMessage()

func (*DhPublicKey) ProtoReflect

func (x *DhPublicKey) ProtoReflect() protoreflect.Message

func (*DhPublicKey) Reset

func (x *DhPublicKey) Reset()

func (*DhPublicKey) String

func (x *DhPublicKey) String() string

type Dimensions

type Dimensions struct {
	Width  int64 `protobuf:"varint,1,opt,name=width,proto3" json:"width,omitempty"`
	Height int64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

func (*Dimensions) Descriptor deprecated

func (*Dimensions) Descriptor() ([]byte, []int)

Deprecated: Use Dimensions.ProtoReflect.Descriptor instead.

func (*Dimensions) GetHeight

func (x *Dimensions) GetHeight() int64

func (*Dimensions) GetWidth

func (x *Dimensions) GetWidth() int64

func (*Dimensions) ProtoMessage

func (*Dimensions) ProtoMessage()

func (*Dimensions) ProtoReflect

func (x *Dimensions) ProtoReflect() protoreflect.Message

func (*Dimensions) Reset

func (x *Dimensions) Reset()

func (*Dimensions) String

func (x *Dimensions) String() string

type DownloadAttachmentRequest

type DownloadAttachmentRequest struct {
	Info     *AttachmentInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	AuthData *AuthMessage    `protobuf:"bytes,2,opt,name=authData,proto3" json:"authData,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadAttachmentRequest) Descriptor deprecated

func (*DownloadAttachmentRequest) Descriptor() ([]byte, []int)

Deprecated: Use DownloadAttachmentRequest.ProtoReflect.Descriptor instead.

func (*DownloadAttachmentRequest) GetAuthData

func (x *DownloadAttachmentRequest) GetAuthData() *AuthMessage

func (*DownloadAttachmentRequest) GetInfo

func (*DownloadAttachmentRequest) ProtoMessage

func (*DownloadAttachmentRequest) ProtoMessage()

func (*DownloadAttachmentRequest) ProtoReflect

func (*DownloadAttachmentRequest) Reset

func (x *DownloadAttachmentRequest) Reset()

func (*DownloadAttachmentRequest) String

func (x *DownloadAttachmentRequest) String() string

type ECDSAKeys

type ECDSAKeys struct {
	Field1        int64  `protobuf:"varint,1,opt,name=field1,proto3" json:"field1,omitempty"` // idk?
	EncryptedKeys []byte `protobuf:"bytes,2,opt,name=encryptedKeys,proto3" json:"encryptedKeys,omitempty"`
	// contains filtered or unexported fields
}

func (*ECDSAKeys) Descriptor deprecated

func (*ECDSAKeys) Descriptor() ([]byte, []int)

Deprecated: Use ECDSAKeys.ProtoReflect.Descriptor instead.

func (*ECDSAKeys) GetEncryptedKeys

func (x *ECDSAKeys) GetEncryptedKeys() []byte

func (*ECDSAKeys) GetField1

func (x *ECDSAKeys) GetField1() int64

func (*ECDSAKeys) ProtoMessage

func (*ECDSAKeys) ProtoMessage()

func (*ECDSAKeys) ProtoReflect

func (x *ECDSAKeys) ProtoReflect() protoreflect.Message

func (*ECDSAKeys) Reset

func (x *ECDSAKeys) Reset()

func (*ECDSAKeys) String

func (x *ECDSAKeys) String() string

type EcP256PublicKey

type EcP256PublicKey struct {

	// x and y are encoded in big-endian two's complement (slightly wasteful)
	// Client MUST verify (x,y) is a valid point on NIST P256
	X []byte `protobuf:"bytes,1,opt,name=x,proto3" json:"x,omitempty"`
	Y []byte `protobuf:"bytes,2,opt,name=y,proto3" json:"y,omitempty"`
	// contains filtered or unexported fields
}

A convenience proto for encoding NIST P-256 elliptic curve public keys

func (*EcP256PublicKey) Descriptor deprecated

func (*EcP256PublicKey) Descriptor() ([]byte, []int)

Deprecated: Use EcP256PublicKey.ProtoReflect.Descriptor instead.

func (*EcP256PublicKey) GetX

func (x *EcP256PublicKey) GetX() []byte

func (*EcP256PublicKey) GetY

func (x *EcP256PublicKey) GetY() []byte

func (*EcP256PublicKey) ProtoMessage

func (*EcP256PublicKey) ProtoMessage()

func (*EcP256PublicKey) ProtoReflect

func (x *EcP256PublicKey) ProtoReflect() protoreflect.Message

func (*EcP256PublicKey) Reset

func (x *EcP256PublicKey) Reset()

func (*EcP256PublicKey) String

func (x *EcP256PublicKey) String() string

type EmojiMeta

type EmojiMeta struct {
	EmojiMetaData []*EmojiMetaData `protobuf:"bytes,1,rep,name=emojiMetaData,proto3" json:"emojiMetaData,omitempty"`
	// contains filtered or unexported fields
}

func (*EmojiMeta) Descriptor deprecated

func (*EmojiMeta) Descriptor() ([]byte, []int)

Deprecated: Use EmojiMeta.ProtoReflect.Descriptor instead.

func (*EmojiMeta) GetEmojiMetaData

func (x *EmojiMeta) GetEmojiMetaData() []*EmojiMetaData

func (*EmojiMeta) ProtoMessage

func (*EmojiMeta) ProtoMessage()

func (*EmojiMeta) ProtoReflect

func (x *EmojiMeta) ProtoReflect() protoreflect.Message

func (*EmojiMeta) Reset

func (x *EmojiMeta) Reset()

func (*EmojiMeta) String

func (x *EmojiMeta) String() string

type EmojiMetaData

type EmojiMetaData struct {
	Unicode string   `protobuf:"bytes,1,opt,name=unicode,proto3" json:"unicode,omitempty"`
	Names   []string `protobuf:"bytes,2,rep,name=names,proto3" json:"names,omitempty"`
	// contains filtered or unexported fields
}

func (*EmojiMetaData) Descriptor deprecated

func (*EmojiMetaData) Descriptor() ([]byte, []int)

Deprecated: Use EmojiMetaData.ProtoReflect.Descriptor instead.

func (*EmojiMetaData) GetNames

func (x *EmojiMetaData) GetNames() []string

func (*EmojiMetaData) GetUnicode

func (x *EmojiMetaData) GetUnicode() string

func (*EmojiMetaData) ProtoMessage

func (*EmojiMetaData) ProtoMessage()

func (*EmojiMetaData) ProtoReflect

func (x *EmojiMetaData) ProtoReflect() protoreflect.Message

func (*EmojiMetaData) Reset

func (x *EmojiMetaData) Reset()

func (*EmojiMetaData) String

func (x *EmojiMetaData) String() string

type EmojiType

type EmojiType int32
const (
	EmojiType_REACTION_TYPE_UNSPECIFIED EmojiType = 0
	EmojiType_LIKE                      EmojiType = 1
	EmojiType_LOVE                      EmojiType = 2
	EmojiType_LAUGH                     EmojiType = 3
	EmojiType_SURPRISED                 EmojiType = 4
	EmojiType_SAD                       EmojiType = 5
	EmojiType_ANGRY                     EmojiType = 6
	EmojiType_DISLIKE                   EmojiType = 7
	EmojiType_CUSTOM                    EmojiType = 8
	EmojiType_QUESTIONING               EmojiType = 9
	EmojiType_CRYING_FACE               EmojiType = 10
	EmojiType_POUTING_FACE              EmojiType = 11
	EmojiType_RED_HEART                 EmojiType = 12
	EmojiType_EMOTIFY                   EmojiType = 13
)

func UnicodeToEmojiType

func UnicodeToEmojiType(emoji string) EmojiType

func (EmojiType) Descriptor

func (EmojiType) Descriptor() protoreflect.EnumDescriptor

func (EmojiType) Enum

func (x EmojiType) Enum() *EmojiType

func (EmojiType) EnumDescriptor deprecated

func (EmojiType) EnumDescriptor() ([]byte, []int)

Deprecated: Use EmojiType.Descriptor instead.

func (EmojiType) Number

func (x EmojiType) Number() protoreflect.EnumNumber

func (EmojiType) String

func (x EmojiType) String() string

func (EmojiType) Type

func (EmojiType) Unicode

func (et EmojiType) Unicode() string

type EmptyArr

type EmptyArr struct {
	// contains filtered or unexported fields
}

func (*EmptyArr) Descriptor deprecated

func (*EmptyArr) Descriptor() ([]byte, []int)

Deprecated: Use EmptyArr.ProtoReflect.Descriptor instead.

func (*EmptyArr) ProtoMessage

func (*EmptyArr) ProtoMessage()

func (*EmptyArr) ProtoReflect

func (x *EmptyArr) ProtoReflect() protoreflect.Message

func (*EmptyArr) Reset

func (x *EmptyArr) Reset()

func (*EmptyArr) String

func (x *EmptyArr) String() string

type EncryptedData2Container

type EncryptedData2Container struct {
	AccountChange *AccountChangeOrSomethingEvent `protobuf:"bytes,2,opt,name=accountChange,proto3" json:"accountChange,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptedData2Container) Descriptor deprecated

func (*EncryptedData2Container) Descriptor() ([]byte, []int)

Deprecated: Use EncryptedData2Container.ProtoReflect.Descriptor instead.

func (*EncryptedData2Container) GetAccountChange

func (*EncryptedData2Container) ProtoMessage

func (*EncryptedData2Container) ProtoMessage()

func (*EncryptedData2Container) ProtoReflect

func (x *EncryptedData2Container) ProtoReflect() protoreflect.Message

func (*EncryptedData2Container) Reset

func (x *EncryptedData2Container) Reset()

func (*EncryptedData2Container) String

func (x *EncryptedData2Container) String() string

type ErrorResponse

type ErrorResponse struct {
	Type    int64                       `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` // 5?
	Message string                      `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Class   []*ErrorResponse_ErrorClass `protobuf:"bytes,3,rep,name=class,proto3" json:"class,omitempty"`
	// contains filtered or unexported fields
}

func (*ErrorResponse) Descriptor deprecated

func (*ErrorResponse) Descriptor() ([]byte, []int)

Deprecated: Use ErrorResponse.ProtoReflect.Descriptor instead.

func (*ErrorResponse) GetClass

func (x *ErrorResponse) GetClass() []*ErrorResponse_ErrorClass

func (*ErrorResponse) GetMessage

func (x *ErrorResponse) GetMessage() string

func (*ErrorResponse) GetType

func (x *ErrorResponse) GetType() int64

func (*ErrorResponse) ProtoMessage

func (*ErrorResponse) ProtoMessage()

func (*ErrorResponse) ProtoReflect

func (x *ErrorResponse) ProtoReflect() protoreflect.Message

func (*ErrorResponse) Reset

func (x *ErrorResponse) Reset()

func (*ErrorResponse) String

func (x *ErrorResponse) String() string

type ErrorResponse_ErrorClass

type ErrorResponse_ErrorClass struct {
	Class string `protobuf:"bytes,1,opt,name=class,proto3" json:"class,omitempty"` // 2: {1: 1}
	// contains filtered or unexported fields
}

func (*ErrorResponse_ErrorClass) Descriptor deprecated

func (*ErrorResponse_ErrorClass) Descriptor() ([]byte, []int)

Deprecated: Use ErrorResponse_ErrorClass.ProtoReflect.Descriptor instead.

func (*ErrorResponse_ErrorClass) GetClass

func (x *ErrorResponse_ErrorClass) GetClass() string

func (*ErrorResponse_ErrorClass) ProtoMessage

func (*ErrorResponse_ErrorClass) ProtoMessage()

func (*ErrorResponse_ErrorClass) ProtoReflect

func (x *ErrorResponse_ErrorClass) ProtoReflect() protoreflect.Message

func (*ErrorResponse_ErrorClass) Reset

func (x *ErrorResponse_ErrorClass) Reset()

func (*ErrorResponse_ErrorClass) String

func (x *ErrorResponse_ErrorClass) String() string

type GaiaPairingRequestContainer

type GaiaPairingRequestContainer struct {
	PairingAttemptID                string          `protobuf:"bytes,1,opt,name=pairingAttemptID,proto3" json:"pairingAttemptID,omitempty"`
	BrowserDetails                  *BrowserDetails `protobuf:"bytes,2,opt,name=browserDetails,proto3" json:"browserDetails,omitempty"`
	StartTimestamp                  int64           `protobuf:"varint,3,opt,name=startTimestamp,proto3" json:"startTimestamp,omitempty"`
	Data                            []byte          `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	ProposedVerificationCodeVersion int32           `protobuf:"varint,5,opt,name=proposedVerificationCodeVersion,proto3" json:"proposedVerificationCodeVersion,omitempty"`
	ProposedKeyDerivationVersion    int32           `protobuf:"varint,6,opt,name=proposedKeyDerivationVersion,proto3" json:"proposedKeyDerivationVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*GaiaPairingRequestContainer) Descriptor deprecated

func (*GaiaPairingRequestContainer) Descriptor() ([]byte, []int)

Deprecated: Use GaiaPairingRequestContainer.ProtoReflect.Descriptor instead.

func (*GaiaPairingRequestContainer) GetBrowserDetails

func (x *GaiaPairingRequestContainer) GetBrowserDetails() *BrowserDetails

func (*GaiaPairingRequestContainer) GetData

func (x *GaiaPairingRequestContainer) GetData() []byte

func (*GaiaPairingRequestContainer) GetPairingAttemptID

func (x *GaiaPairingRequestContainer) GetPairingAttemptID() string

func (*GaiaPairingRequestContainer) GetProposedKeyDerivationVersion

func (x *GaiaPairingRequestContainer) GetProposedKeyDerivationVersion() int32

func (*GaiaPairingRequestContainer) GetProposedVerificationCodeVersion

func (x *GaiaPairingRequestContainer) GetProposedVerificationCodeVersion() int32

func (*GaiaPairingRequestContainer) GetStartTimestamp

func (x *GaiaPairingRequestContainer) GetStartTimestamp() int64

func (*GaiaPairingRequestContainer) ProtoMessage

func (*GaiaPairingRequestContainer) ProtoMessage()

func (*GaiaPairingRequestContainer) ProtoReflect

func (*GaiaPairingRequestContainer) Reset

func (x *GaiaPairingRequestContainer) Reset()

func (*GaiaPairingRequestContainer) String

func (x *GaiaPairingRequestContainer) String() string

type GaiaPairingResponseContainer

type GaiaPairingResponseContainer struct {
	FinishErrorType                  int32  `protobuf:"varint,1,opt,name=finishErrorType,proto3" json:"finishErrorType,omitempty"`
	FinishErrorCode                  int32  `protobuf:"varint,2,opt,name=finishErrorCode,proto3" json:"finishErrorCode,omitempty"`
	UnknownInt3                      int32  `protobuf:"varint,3,opt,name=unknownInt3,proto3" json:"unknownInt3,omitempty"` // For init, 1
	SessionUUID                      string `protobuf:"bytes,4,opt,name=sessionUUID,proto3" json:"sessionUUID,omitempty"`
	Data                             []byte `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"`
	ConfirmedVerificationCodeVersion int32  `protobuf:"varint,6,opt,name=confirmedVerificationCodeVersion,proto3" json:"confirmedVerificationCodeVersion,omitempty"`
	ConfirmedKeyDerivationVersion    int32  `protobuf:"varint,7,opt,name=confirmedKeyDerivationVersion,proto3" json:"confirmedKeyDerivationVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*GaiaPairingResponseContainer) Descriptor deprecated

func (*GaiaPairingResponseContainer) Descriptor() ([]byte, []int)

Deprecated: Use GaiaPairingResponseContainer.ProtoReflect.Descriptor instead.

func (*GaiaPairingResponseContainer) GetConfirmedKeyDerivationVersion

func (x *GaiaPairingResponseContainer) GetConfirmedKeyDerivationVersion() int32

func (*GaiaPairingResponseContainer) GetConfirmedVerificationCodeVersion

func (x *GaiaPairingResponseContainer) GetConfirmedVerificationCodeVersion() int32

func (*GaiaPairingResponseContainer) GetData

func (x *GaiaPairingResponseContainer) GetData() []byte

func (*GaiaPairingResponseContainer) GetFinishErrorCode

func (x *GaiaPairingResponseContainer) GetFinishErrorCode() int32

func (*GaiaPairingResponseContainer) GetFinishErrorType

func (x *GaiaPairingResponseContainer) GetFinishErrorType() int32

func (*GaiaPairingResponseContainer) GetSessionUUID

func (x *GaiaPairingResponseContainer) GetSessionUUID() string

func (*GaiaPairingResponseContainer) GetUnknownInt3

func (x *GaiaPairingResponseContainer) GetUnknownInt3() int32

func (*GaiaPairingResponseContainer) ProtoMessage

func (*GaiaPairingResponseContainer) ProtoMessage()

func (*GaiaPairingResponseContainer) ProtoReflect

func (*GaiaPairingResponseContainer) Reset

func (x *GaiaPairingResponseContainer) Reset()

func (*GaiaPairingResponseContainer) String

type GenericPublicKey

type GenericPublicKey struct {
	Type PublicKeyType `protobuf:"varint,1,opt,name=type,proto3,enum=ukey.PublicKeyType" json:"type,omitempty"`
	// Types that are assignable to PublicKey:
	//
	//	*GenericPublicKey_EcP256PublicKey
	//	*GenericPublicKey_Rsa2048PublicKey
	//	*GenericPublicKey_Dh2048PublicKey
	PublicKey isGenericPublicKey_PublicKey `protobuf_oneof:"public_key"`
	// contains filtered or unexported fields
}

func (*GenericPublicKey) Descriptor deprecated

func (*GenericPublicKey) Descriptor() ([]byte, []int)

Deprecated: Use GenericPublicKey.ProtoReflect.Descriptor instead.

func (*GenericPublicKey) GetDh2048PublicKey

func (x *GenericPublicKey) GetDh2048PublicKey() *DhPublicKey

func (*GenericPublicKey) GetEcP256PublicKey

func (x *GenericPublicKey) GetEcP256PublicKey() *EcP256PublicKey

func (*GenericPublicKey) GetPublicKey

func (m *GenericPublicKey) GetPublicKey() isGenericPublicKey_PublicKey

func (*GenericPublicKey) GetRsa2048PublicKey

func (x *GenericPublicKey) GetRsa2048PublicKey() *SimpleRsaPublicKey

func (*GenericPublicKey) GetType

func (x *GenericPublicKey) GetType() PublicKeyType

func (*GenericPublicKey) ProtoMessage

func (*GenericPublicKey) ProtoMessage()

func (*GenericPublicKey) ProtoReflect

func (x *GenericPublicKey) ProtoReflect() protoreflect.Message

func (*GenericPublicKey) Reset

func (x *GenericPublicKey) Reset()

func (*GenericPublicKey) String

func (x *GenericPublicKey) String() string

type GenericPublicKey_Dh2048PublicKey

type GenericPublicKey_Dh2048PublicKey struct {
	// Use only as a last resort
	Dh2048PublicKey *DhPublicKey `protobuf:"bytes,4,opt,name=dh2048_public_key,json=dh2048PublicKey,proto3,oneof"`
}

type GenericPublicKey_EcP256PublicKey

type GenericPublicKey_EcP256PublicKey struct {
	EcP256PublicKey *EcP256PublicKey `protobuf:"bytes,2,opt,name=ec_p256_public_key,json=ecP256PublicKey,proto3,oneof"`
}

type GenericPublicKey_Rsa2048PublicKey

type GenericPublicKey_Rsa2048PublicKey struct {
	Rsa2048PublicKey *SimpleRsaPublicKey `protobuf:"bytes,3,opt,name=rsa2048_public_key,json=rsa2048PublicKey,proto3,oneof"`
}

type GetConversationRequest

type GetConversationRequest struct {
	ConversationID string `protobuf:"bytes,1,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	// contains filtered or unexported fields
}

func (*GetConversationRequest) Descriptor deprecated

func (*GetConversationRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetConversationRequest.ProtoReflect.Descriptor instead.

func (*GetConversationRequest) GetConversationID

func (x *GetConversationRequest) GetConversationID() string

func (*GetConversationRequest) ProtoMessage

func (*GetConversationRequest) ProtoMessage()

func (*GetConversationRequest) ProtoReflect

func (x *GetConversationRequest) ProtoReflect() protoreflect.Message

func (*GetConversationRequest) Reset

func (x *GetConversationRequest) Reset()

func (*GetConversationRequest) String

func (x *GetConversationRequest) String() string

type GetConversationResponse

type GetConversationResponse struct {
	Conversation *Conversation `protobuf:"bytes,1,opt,name=conversation,proto3" json:"conversation,omitempty"`
	// contains filtered or unexported fields
}

func (*GetConversationResponse) Descriptor deprecated

func (*GetConversationResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetConversationResponse.ProtoReflect.Descriptor instead.

func (*GetConversationResponse) GetConversation

func (x *GetConversationResponse) GetConversation() *Conversation

func (*GetConversationResponse) ProtoMessage

func (*GetConversationResponse) ProtoMessage()

func (*GetConversationResponse) ProtoReflect

func (x *GetConversationResponse) ProtoReflect() protoreflect.Message

func (*GetConversationResponse) Reset

func (x *GetConversationResponse) Reset()

func (*GetConversationResponse) String

func (x *GetConversationResponse) String() string

type GetConversationTypeRequest

type GetConversationTypeRequest struct {
	ConversationID string `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	// contains filtered or unexported fields
}

func (*GetConversationTypeRequest) Descriptor deprecated

func (*GetConversationTypeRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetConversationTypeRequest.ProtoReflect.Descriptor instead.

func (*GetConversationTypeRequest) GetConversationID

func (x *GetConversationTypeRequest) GetConversationID() string

func (*GetConversationTypeRequest) ProtoMessage

func (*GetConversationTypeRequest) ProtoMessage()

func (*GetConversationTypeRequest) ProtoReflect

func (*GetConversationTypeRequest) Reset

func (x *GetConversationTypeRequest) Reset()

func (*GetConversationTypeRequest) String

func (x *GetConversationTypeRequest) String() string

type GetConversationTypeResponse

type GetConversationTypeResponse struct {
	ConversationID string `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	Type           int32  `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Bool1          bool   `protobuf:"varint,5,opt,name=bool1,proto3" json:"bool1,omitempty"`
	Number2        int32  `protobuf:"varint,6,opt,name=number2,proto3" json:"number2,omitempty"`
	// contains filtered or unexported fields
}

func (*GetConversationTypeResponse) Descriptor deprecated

func (*GetConversationTypeResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetConversationTypeResponse.ProtoReflect.Descriptor instead.

func (*GetConversationTypeResponse) GetBool1

func (x *GetConversationTypeResponse) GetBool1() bool

func (*GetConversationTypeResponse) GetConversationID

func (x *GetConversationTypeResponse) GetConversationID() string

func (*GetConversationTypeResponse) GetNumber2

func (x *GetConversationTypeResponse) GetNumber2() int32

func (*GetConversationTypeResponse) GetType

func (x *GetConversationTypeResponse) GetType() int32

func (*GetConversationTypeResponse) ProtoMessage

func (*GetConversationTypeResponse) ProtoMessage()

func (*GetConversationTypeResponse) ProtoReflect

func (*GetConversationTypeResponse) Reset

func (x *GetConversationTypeResponse) Reset()

func (*GetConversationTypeResponse) String

func (x *GetConversationTypeResponse) String() string

type GetFullSizeImageRequest

type GetFullSizeImageRequest struct {
	MessageID       string `protobuf:"bytes,1,opt,name=messageID,proto3" json:"messageID,omitempty"`
	ActionMessageID string `protobuf:"bytes,2,opt,name=actionMessageID,proto3" json:"actionMessageID,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFullSizeImageRequest) Descriptor deprecated

func (*GetFullSizeImageRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetFullSizeImageRequest.ProtoReflect.Descriptor instead.

func (*GetFullSizeImageRequest) GetActionMessageID

func (x *GetFullSizeImageRequest) GetActionMessageID() string

func (*GetFullSizeImageRequest) GetMessageID

func (x *GetFullSizeImageRequest) GetMessageID() string

func (*GetFullSizeImageRequest) ProtoMessage

func (*GetFullSizeImageRequest) ProtoMessage()

func (*GetFullSizeImageRequest) ProtoReflect

func (x *GetFullSizeImageRequest) ProtoReflect() protoreflect.Message

func (*GetFullSizeImageRequest) Reset

func (x *GetFullSizeImageRequest) Reset()

func (*GetFullSizeImageRequest) String

func (x *GetFullSizeImageRequest) String() string

type GetFullSizeImageResponse

type GetFullSizeImageResponse struct {
	// contains filtered or unexported fields
}

func (*GetFullSizeImageResponse) Descriptor deprecated

func (*GetFullSizeImageResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetFullSizeImageResponse.ProtoReflect.Descriptor instead.

func (*GetFullSizeImageResponse) ProtoMessage

func (*GetFullSizeImageResponse) ProtoMessage()

func (*GetFullSizeImageResponse) ProtoReflect

func (x *GetFullSizeImageResponse) ProtoReflect() protoreflect.Message

func (*GetFullSizeImageResponse) Reset

func (x *GetFullSizeImageResponse) Reset()

func (*GetFullSizeImageResponse) String

func (x *GetFullSizeImageResponse) String() string

type GetOrCreateConversationRequest

type GetOrCreateConversationRequest struct {
	Numbers        []*ContactNumber `protobuf:"bytes,2,rep,name=numbers,proto3" json:"numbers,omitempty"`
	RCSGroupName   *string          `protobuf:"bytes,3,opt,name=RCSGroupName,proto3,oneof" json:"RCSGroupName,omitempty"`
	CreateRCSGroup *bool            `protobuf:"varint,4,opt,name=createRCSGroup,proto3,oneof" json:"createRCSGroup,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrCreateConversationRequest) Descriptor deprecated

func (*GetOrCreateConversationRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrCreateConversationRequest.ProtoReflect.Descriptor instead.

func (*GetOrCreateConversationRequest) GetCreateRCSGroup

func (x *GetOrCreateConversationRequest) GetCreateRCSGroup() bool

func (*GetOrCreateConversationRequest) GetNumbers

func (x *GetOrCreateConversationRequest) GetNumbers() []*ContactNumber

func (*GetOrCreateConversationRequest) GetRCSGroupName

func (x *GetOrCreateConversationRequest) GetRCSGroupName() string

func (*GetOrCreateConversationRequest) ProtoMessage

func (*GetOrCreateConversationRequest) ProtoMessage()

func (*GetOrCreateConversationRequest) ProtoReflect

func (*GetOrCreateConversationRequest) Reset

func (x *GetOrCreateConversationRequest) Reset()

func (*GetOrCreateConversationRequest) String

type GetOrCreateConversationResponse

type GetOrCreateConversationResponse struct {
	Conversation *Conversation                          `protobuf:"bytes,2,opt,name=conversation,proto3" json:"conversation,omitempty"`
	Status       GetOrCreateConversationResponse_Status `protobuf:"varint,3,opt,name=status,proto3,enum=client.GetOrCreateConversationResponse_Status" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrCreateConversationResponse) Descriptor deprecated

func (*GetOrCreateConversationResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOrCreateConversationResponse.ProtoReflect.Descriptor instead.

func (*GetOrCreateConversationResponse) GetConversation

func (x *GetOrCreateConversationResponse) GetConversation() *Conversation

func (*GetOrCreateConversationResponse) GetStatus

func (*GetOrCreateConversationResponse) ProtoMessage

func (*GetOrCreateConversationResponse) ProtoMessage()

func (*GetOrCreateConversationResponse) ProtoReflect

func (*GetOrCreateConversationResponse) Reset

func (*GetOrCreateConversationResponse) String

type GetOrCreateConversationResponse_Status

type GetOrCreateConversationResponse_Status int32
const (
	GetOrCreateConversationResponse_UNKNOWN    GetOrCreateConversationResponse_Status = 0
	GetOrCreateConversationResponse_SUCCESS    GetOrCreateConversationResponse_Status = 1
	GetOrCreateConversationResponse_CREATE_RCS GetOrCreateConversationResponse_Status = 3
)

func (GetOrCreateConversationResponse_Status) Descriptor

func (GetOrCreateConversationResponse_Status) Enum

func (GetOrCreateConversationResponse_Status) EnumDescriptor deprecated

func (GetOrCreateConversationResponse_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use GetOrCreateConversationResponse_Status.Descriptor instead.

func (GetOrCreateConversationResponse_Status) Number

func (GetOrCreateConversationResponse_Status) String

func (GetOrCreateConversationResponse_Status) Type

type GetThumbnailRequest

type GetThumbnailRequest struct {
	Identifiers []string `protobuf:"bytes,1,rep,name=identifiers,proto3" json:"identifiers,omitempty"`
	// contains filtered or unexported fields
}

func (*GetThumbnailRequest) Descriptor deprecated

func (*GetThumbnailRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetThumbnailRequest.ProtoReflect.Descriptor instead.

func (*GetThumbnailRequest) GetIdentifiers

func (x *GetThumbnailRequest) GetIdentifiers() []string

func (*GetThumbnailRequest) ProtoMessage

func (*GetThumbnailRequest) ProtoMessage()

func (*GetThumbnailRequest) ProtoReflect

func (x *GetThumbnailRequest) ProtoReflect() protoreflect.Message

func (*GetThumbnailRequest) Reset

func (x *GetThumbnailRequest) Reset()

func (*GetThumbnailRequest) String

func (x *GetThumbnailRequest) String() string

type GetThumbnailResponse

type GetThumbnailResponse struct {
	Thumbnail []*GetThumbnailResponse_Thumbnail `protobuf:"bytes,1,rep,name=thumbnail,proto3" json:"thumbnail,omitempty"`
	// contains filtered or unexported fields
}

func (*GetThumbnailResponse) Descriptor deprecated

func (*GetThumbnailResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetThumbnailResponse.ProtoReflect.Descriptor instead.

func (*GetThumbnailResponse) GetThumbnail

func (*GetThumbnailResponse) ProtoMessage

func (*GetThumbnailResponse) ProtoMessage()

func (*GetThumbnailResponse) ProtoReflect

func (x *GetThumbnailResponse) ProtoReflect() protoreflect.Message

func (*GetThumbnailResponse) Reset

func (x *GetThumbnailResponse) Reset()

func (*GetThumbnailResponse) String

func (x *GetThumbnailResponse) String() string

type GetThumbnailResponse_Thumbnail

type GetThumbnailResponse_Thumbnail struct {

	// ID depends on request, it's always the same as the input.
	Identifier string         `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"`
	Data       *ThumbnailData `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetThumbnailResponse_Thumbnail) Descriptor deprecated

func (*GetThumbnailResponse_Thumbnail) Descriptor() ([]byte, []int)

Deprecated: Use GetThumbnailResponse_Thumbnail.ProtoReflect.Descriptor instead.

func (*GetThumbnailResponse_Thumbnail) GetData

func (*GetThumbnailResponse_Thumbnail) GetIdentifier

func (x *GetThumbnailResponse_Thumbnail) GetIdentifier() string

func (*GetThumbnailResponse_Thumbnail) ProtoMessage

func (*GetThumbnailResponse_Thumbnail) ProtoMessage()

func (*GetThumbnailResponse_Thumbnail) ProtoReflect

func (*GetThumbnailResponse_Thumbnail) Reset

func (x *GetThumbnailResponse_Thumbnail) Reset()

func (*GetThumbnailResponse_Thumbnail) String

type IdentifierType

type IdentifierType int32
const (
	IdentifierType_UNKNOWN IdentifierType = 0
	IdentifierType_PHONE   IdentifierType = 1
	IdentifierType_EMAIL   IdentifierType = 2
)

func (IdentifierType) Descriptor

func (IdentifierType) Enum

func (x IdentifierType) Enum() *IdentifierType

func (IdentifierType) EnumDescriptor deprecated

func (IdentifierType) EnumDescriptor() ([]byte, []int)

Deprecated: Use IdentifierType.Descriptor instead.

func (IdentifierType) Number

func (IdentifierType) String

func (x IdentifierType) String() string

func (IdentifierType) Type

type IncomingRPCMessage

type IncomingRPCMessage struct {
	ResponseID        string      `protobuf:"bytes,1,opt,name=responseID,proto3" json:"responseID,omitempty"`
	BugleRoute        BugleRoute  `protobuf:"varint,2,opt,name=bugleRoute,proto3,enum=rpc.BugleRoute" json:"bugleRoute,omitempty"`
	StartExecute      uint64      `protobuf:"varint,3,opt,name=startExecute,proto3" json:"startExecute,omitempty"`
	MessageType       MessageType `protobuf:"varint,5,opt,name=messageType,proto3,enum=rpc.MessageType" json:"messageType,omitempty"`
	FinishExecute     uint64      `protobuf:"varint,6,opt,name=finishExecute,proto3" json:"finishExecute,omitempty"`
	MicrosecondsTaken uint64      `protobuf:"varint,7,opt,name=microsecondsTaken,proto3" json:"microsecondsTaken,omitempty"`
	Mobile            *Device     `protobuf:"bytes,8,opt,name=mobile,proto3" json:"mobile,omitempty"`
	Browser           *Device     `protobuf:"bytes,9,opt,name=browser,proto3" json:"browser,omitempty"`
	// Either a RPCMessageData or a RPCPairData encoded as bytes
	MessageData []byte `protobuf:"bytes,12,opt,name=messageData,proto3" json:"messageData,omitempty"`
	SignatureID string `protobuf:"bytes,17,opt,name=signatureID,proto3" json:"signatureID,omitempty"`
	Timestamp   string `protobuf:"bytes,21,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// Completely unsure about this, but it seems to be present for weird intermediate responses
	GdittoSource *IncomingRPCMessage_GDittoSource `protobuf:"bytes,23,opt,name=gdittoSource,proto3" json:"gdittoSource,omitempty"`
	// contains filtered or unexported fields
}

func (*IncomingRPCMessage) Descriptor deprecated

func (*IncomingRPCMessage) Descriptor() ([]byte, []int)

Deprecated: Use IncomingRPCMessage.ProtoReflect.Descriptor instead.

func (*IncomingRPCMessage) GetBrowser

func (x *IncomingRPCMessage) GetBrowser() *Device

func (*IncomingRPCMessage) GetBugleRoute

func (x *IncomingRPCMessage) GetBugleRoute() BugleRoute

func (*IncomingRPCMessage) GetFinishExecute

func (x *IncomingRPCMessage) GetFinishExecute() uint64

func (*IncomingRPCMessage) GetGdittoSource

func (*IncomingRPCMessage) GetMessageData

func (x *IncomingRPCMessage) GetMessageData() []byte

func (*IncomingRPCMessage) GetMessageType

func (x *IncomingRPCMessage) GetMessageType() MessageType

func (*IncomingRPCMessage) GetMicrosecondsTaken

func (x *IncomingRPCMessage) GetMicrosecondsTaken() uint64

func (*IncomingRPCMessage) GetMobile

func (x *IncomingRPCMessage) GetMobile() *Device

func (*IncomingRPCMessage) GetResponseID

func (x *IncomingRPCMessage) GetResponseID() string

func (*IncomingRPCMessage) GetSignatureID

func (x *IncomingRPCMessage) GetSignatureID() string

func (*IncomingRPCMessage) GetStartExecute

func (x *IncomingRPCMessage) GetStartExecute() uint64

func (*IncomingRPCMessage) GetTimestamp

func (x *IncomingRPCMessage) GetTimestamp() string

func (*IncomingRPCMessage) ProtoMessage

func (*IncomingRPCMessage) ProtoMessage()

func (*IncomingRPCMessage) ProtoReflect

func (x *IncomingRPCMessage) ProtoReflect() protoreflect.Message

func (*IncomingRPCMessage) Reset

func (x *IncomingRPCMessage) Reset()

func (*IncomingRPCMessage) String

func (x *IncomingRPCMessage) String() string

type IncomingRPCMessage_GDittoSource

type IncomingRPCMessage_GDittoSource struct {
	DeviceID int32 `protobuf:"varint,2,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	// contains filtered or unexported fields
}

func (*IncomingRPCMessage_GDittoSource) Descriptor deprecated

func (*IncomingRPCMessage_GDittoSource) Descriptor() ([]byte, []int)

Deprecated: Use IncomingRPCMessage_GDittoSource.ProtoReflect.Descriptor instead.

func (*IncomingRPCMessage_GDittoSource) GetDeviceID

func (x *IncomingRPCMessage_GDittoSource) GetDeviceID() int32

func (*IncomingRPCMessage_GDittoSource) ProtoMessage

func (*IncomingRPCMessage_GDittoSource) ProtoMessage()

func (*IncomingRPCMessage_GDittoSource) ProtoReflect

func (*IncomingRPCMessage_GDittoSource) Reset

func (*IncomingRPCMessage_GDittoSource) String

type IsBugleDefaultResponse

type IsBugleDefaultResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*IsBugleDefaultResponse) Descriptor deprecated

func (*IsBugleDefaultResponse) Descriptor() ([]byte, []int)

Deprecated: Use IsBugleDefaultResponse.ProtoReflect.Descriptor instead.

func (*IsBugleDefaultResponse) GetSuccess

func (x *IsBugleDefaultResponse) GetSuccess() bool

func (*IsBugleDefaultResponse) ProtoMessage

func (*IsBugleDefaultResponse) ProtoMessage()

func (*IsBugleDefaultResponse) ProtoReflect

func (x *IsBugleDefaultResponse) ProtoReflect() protoreflect.Message

func (*IsBugleDefaultResponse) Reset

func (x *IsBugleDefaultResponse) Reset()

func (*IsBugleDefaultResponse) String

func (x *IsBugleDefaultResponse) String() string

type KeyData

type KeyData struct {
	Mobile         *Device     `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
	EcdsaKeys      *ECDSAKeys  `protobuf:"bytes,6,opt,name=ecdsaKeys,proto3" json:"ecdsaKeys,omitempty"`
	WebAuthKeyData *WebAuthKey `protobuf:"bytes,2,opt,name=webAuthKeyData,proto3" json:"webAuthKeyData,omitempty"`
	Browser        *Device     `protobuf:"bytes,3,opt,name=browser,proto3" json:"browser,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyData) Descriptor deprecated

func (*KeyData) Descriptor() ([]byte, []int)

Deprecated: Use KeyData.ProtoReflect.Descriptor instead.

func (*KeyData) GetBrowser

func (x *KeyData) GetBrowser() *Device

func (*KeyData) GetEcdsaKeys

func (x *KeyData) GetEcdsaKeys() *ECDSAKeys

func (*KeyData) GetMobile

func (x *KeyData) GetMobile() *Device

func (*KeyData) GetWebAuthKeyData

func (x *KeyData) GetWebAuthKeyData() *WebAuthKey

func (*KeyData) ProtoMessage

func (*KeyData) ProtoMessage()

func (*KeyData) ProtoReflect

func (x *KeyData) ProtoReflect() protoreflect.Message

func (*KeyData) Reset

func (x *KeyData) Reset()

func (*KeyData) String

func (x *KeyData) String() string

type LatestMessage

type LatestMessage struct {
	DisplayContent      string               `protobuf:"bytes,1,opt,name=displayContent,proto3" json:"displayContent,omitempty"`
	FromMe              int64                `protobuf:"varint,2,opt,name=fromMe,proto3" json:"fromMe,omitempty"`
	DisplayName         string               `protobuf:"bytes,4,opt,name=displayName,proto3" json:"displayName,omitempty"`
	LatestMessageStatus *LatestMessageStatus `protobuf:"bytes,5,opt,name=latestMessageStatus,proto3" json:"latestMessageStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*LatestMessage) Descriptor deprecated

func (*LatestMessage) Descriptor() ([]byte, []int)

Deprecated: Use LatestMessage.ProtoReflect.Descriptor instead.

func (*LatestMessage) GetDisplayContent

func (x *LatestMessage) GetDisplayContent() string

func (*LatestMessage) GetDisplayName

func (x *LatestMessage) GetDisplayName() string

func (*LatestMessage) GetFromMe

func (x *LatestMessage) GetFromMe() int64

func (*LatestMessage) GetLatestMessageStatus

func (x *LatestMessage) GetLatestMessageStatus() *LatestMessageStatus

func (*LatestMessage) ProtoMessage

func (*LatestMessage) ProtoMessage()

func (*LatestMessage) ProtoReflect

func (x *LatestMessage) ProtoReflect() protoreflect.Message

func (*LatestMessage) Reset

func (x *LatestMessage) Reset()

func (*LatestMessage) String

func (x *LatestMessage) String() string

type LatestMessageStatus

type LatestMessageStatus struct {
	Status2 int64             `protobuf:"varint,1,opt,name=status2,proto3" json:"status2,omitempty"`
	Status  MessageStatusType `protobuf:"varint,2,opt,name=status,proto3,enum=conversations.MessageStatusType" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*LatestMessageStatus) Descriptor deprecated

func (*LatestMessageStatus) Descriptor() ([]byte, []int)

Deprecated: Use LatestMessageStatus.ProtoReflect.Descriptor instead.

func (*LatestMessageStatus) GetStatus

func (x *LatestMessageStatus) GetStatus() MessageStatusType

func (*LatestMessageStatus) GetStatus2

func (x *LatestMessageStatus) GetStatus2() int64

func (*LatestMessageStatus) ProtoMessage

func (*LatestMessageStatus) ProtoMessage()

func (*LatestMessageStatus) ProtoReflect

func (x *LatestMessageStatus) ProtoReflect() protoreflect.Message

func (*LatestMessageStatus) Reset

func (x *LatestMessageStatus) Reset()

func (*LatestMessageStatus) String

func (x *LatestMessageStatus) String() string

type ListContactsRequest

type ListContactsRequest struct {
	I1 int32 `protobuf:"varint,5,opt,name=i1,proto3" json:"i1,omitempty"` // = 1
	I2 int32 `protobuf:"varint,6,opt,name=i2,proto3" json:"i2,omitempty"` // = 350
	I3 int32 `protobuf:"varint,7,opt,name=i3,proto3" json:"i3,omitempty"` // = 50
	// contains filtered or unexported fields
}

func (*ListContactsRequest) Descriptor deprecated

func (*ListContactsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListContactsRequest.ProtoReflect.Descriptor instead.

func (*ListContactsRequest) GetI1

func (x *ListContactsRequest) GetI1() int32

func (*ListContactsRequest) GetI2

func (x *ListContactsRequest) GetI2() int32

func (*ListContactsRequest) GetI3

func (x *ListContactsRequest) GetI3() int32

func (*ListContactsRequest) ProtoMessage

func (*ListContactsRequest) ProtoMessage()

func (*ListContactsRequest) ProtoReflect

func (x *ListContactsRequest) ProtoReflect() protoreflect.Message

func (*ListContactsRequest) Reset

func (x *ListContactsRequest) Reset()

func (*ListContactsRequest) String

func (x *ListContactsRequest) String() string

type ListContactsResponse

type ListContactsResponse struct {
	Contacts []*Contact `protobuf:"bytes,2,rep,name=contacts,proto3" json:"contacts,omitempty"`
	// contains filtered or unexported fields
}

func (*ListContactsResponse) Descriptor deprecated

func (*ListContactsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListContactsResponse.ProtoReflect.Descriptor instead.

func (*ListContactsResponse) GetContacts

func (x *ListContactsResponse) GetContacts() []*Contact

func (*ListContactsResponse) ProtoMessage

func (*ListContactsResponse) ProtoMessage()

func (*ListContactsResponse) ProtoReflect

func (x *ListContactsResponse) ProtoReflect() protoreflect.Message

func (*ListContactsResponse) Reset

func (x *ListContactsResponse) Reset()

func (*ListContactsResponse) String

func (x *ListContactsResponse) String() string

type ListConversationsRequest

type ListConversationsRequest struct {
	Count  int64                           `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	Folder ListConversationsRequest_Folder `protobuf:"varint,4,opt,name=folder,proto3,enum=client.ListConversationsRequest_Folder" json:"folder,omitempty"`
	Cursor *Cursor                         `protobuf:"bytes,5,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListConversationsRequest) Descriptor deprecated

func (*ListConversationsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListConversationsRequest.ProtoReflect.Descriptor instead.

func (*ListConversationsRequest) GetCount

func (x *ListConversationsRequest) GetCount() int64

func (*ListConversationsRequest) GetCursor

func (x *ListConversationsRequest) GetCursor() *Cursor

func (*ListConversationsRequest) GetFolder

func (*ListConversationsRequest) ProtoMessage

func (*ListConversationsRequest) ProtoMessage()

func (*ListConversationsRequest) ProtoReflect

func (x *ListConversationsRequest) ProtoReflect() protoreflect.Message

func (*ListConversationsRequest) Reset

func (x *ListConversationsRequest) Reset()

func (*ListConversationsRequest) String

func (x *ListConversationsRequest) String() string

type ListConversationsRequest_Folder

type ListConversationsRequest_Folder int32
const (
	ListConversationsRequest_UNKNOWN      ListConversationsRequest_Folder = 0
	ListConversationsRequest_INBOX        ListConversationsRequest_Folder = 1
	ListConversationsRequest_ARCHIVE      ListConversationsRequest_Folder = 2
	ListConversationsRequest_SPAM_BLOCKED ListConversationsRequest_Folder = 5
)

func (ListConversationsRequest_Folder) Descriptor

func (ListConversationsRequest_Folder) Enum

func (ListConversationsRequest_Folder) EnumDescriptor deprecated

func (ListConversationsRequest_Folder) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListConversationsRequest_Folder.Descriptor instead.

func (ListConversationsRequest_Folder) Number

func (ListConversationsRequest_Folder) String

func (ListConversationsRequest_Folder) Type

type ListConversationsResponse

type ListConversationsResponse struct {
	Conversations []*Conversation `protobuf:"bytes,2,rep,name=conversations,proto3" json:"conversations,omitempty"`
	CursorBytes   []byte          `protobuf:"bytes,3,opt,name=cursorBytes,proto3,oneof" json:"cursorBytes,omitempty"`
	Cursor        *Cursor         `protobuf:"bytes,5,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListConversationsResponse) Descriptor deprecated

func (*ListConversationsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListConversationsResponse.ProtoReflect.Descriptor instead.

func (*ListConversationsResponse) GetConversations

func (x *ListConversationsResponse) GetConversations() []*Conversation

func (*ListConversationsResponse) GetCursor

func (x *ListConversationsResponse) GetCursor() *Cursor

func (*ListConversationsResponse) GetCursorBytes

func (x *ListConversationsResponse) GetCursorBytes() []byte

func (*ListConversationsResponse) ProtoMessage

func (*ListConversationsResponse) ProtoMessage()

func (*ListConversationsResponse) ProtoReflect

func (*ListConversationsResponse) Reset

func (x *ListConversationsResponse) Reset()

func (*ListConversationsResponse) String

func (x *ListConversationsResponse) String() string

type ListMessagesRequest

type ListMessagesRequest struct {
	ConversationID string  `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	Count          int64   `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	Cursor         *Cursor `protobuf:"bytes,5,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListMessagesRequest) Descriptor deprecated

func (*ListMessagesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListMessagesRequest.ProtoReflect.Descriptor instead.

func (*ListMessagesRequest) GetConversationID

func (x *ListMessagesRequest) GetConversationID() string

func (*ListMessagesRequest) GetCount

func (x *ListMessagesRequest) GetCount() int64

func (*ListMessagesRequest) GetCursor

func (x *ListMessagesRequest) GetCursor() *Cursor

func (*ListMessagesRequest) ProtoMessage

func (*ListMessagesRequest) ProtoMessage()

func (*ListMessagesRequest) ProtoReflect

func (x *ListMessagesRequest) ProtoReflect() protoreflect.Message

func (*ListMessagesRequest) Reset

func (x *ListMessagesRequest) Reset()

func (*ListMessagesRequest) String

func (x *ListMessagesRequest) String() string

type ListMessagesResponse

type ListMessagesResponse struct {
	Messages      []*Message `protobuf:"bytes,2,rep,name=messages,proto3" json:"messages,omitempty"`
	SomeBytes     []byte     `protobuf:"bytes,3,opt,name=someBytes,proto3" json:"someBytes,omitempty"`
	TotalMessages int64      `protobuf:"varint,4,opt,name=totalMessages,proto3" json:"totalMessages,omitempty"`
	Cursor        *Cursor    `protobuf:"bytes,5,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListMessagesResponse) Descriptor deprecated

func (*ListMessagesResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListMessagesResponse.ProtoReflect.Descriptor instead.

func (*ListMessagesResponse) GetCursor

func (x *ListMessagesResponse) GetCursor() *Cursor

func (*ListMessagesResponse) GetMessages

func (x *ListMessagesResponse) GetMessages() []*Message

func (*ListMessagesResponse) GetSomeBytes

func (x *ListMessagesResponse) GetSomeBytes() []byte

func (*ListMessagesResponse) GetTotalMessages

func (x *ListMessagesResponse) GetTotalMessages() int64

func (*ListMessagesResponse) ProtoMessage

func (*ListMessagesResponse) ProtoMessage()

func (*ListMessagesResponse) ProtoReflect

func (x *ListMessagesResponse) ProtoReflect() protoreflect.Message

func (*ListMessagesResponse) Reset

func (x *ListMessagesResponse) Reset()

func (*ListMessagesResponse) String

func (x *ListMessagesResponse) String() string

type ListTopContactsRequest

type ListTopContactsRequest struct {
	Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTopContactsRequest) Descriptor deprecated

func (*ListTopContactsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListTopContactsRequest.ProtoReflect.Descriptor instead.

func (*ListTopContactsRequest) GetCount

func (x *ListTopContactsRequest) GetCount() int32

func (*ListTopContactsRequest) ProtoMessage

func (*ListTopContactsRequest) ProtoMessage()

func (*ListTopContactsRequest) ProtoReflect

func (x *ListTopContactsRequest) ProtoReflect() protoreflect.Message

func (*ListTopContactsRequest) Reset

func (x *ListTopContactsRequest) Reset()

func (*ListTopContactsRequest) String

func (x *ListTopContactsRequest) String() string

type ListTopContactsResponse

type ListTopContactsResponse struct {
	Contacts []*Contact `protobuf:"bytes,1,rep,name=contacts,proto3" json:"contacts,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTopContactsResponse) Descriptor deprecated

func (*ListTopContactsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListTopContactsResponse.ProtoReflect.Descriptor instead.

func (*ListTopContactsResponse) GetContacts

func (x *ListTopContactsResponse) GetContacts() []*Contact

func (*ListTopContactsResponse) ProtoMessage

func (*ListTopContactsResponse) ProtoMessage()

func (*ListTopContactsResponse) ProtoReflect

func (x *ListTopContactsResponse) ProtoReflect() protoreflect.Message

func (*ListTopContactsResponse) Reset

func (x *ListTopContactsResponse) Reset()

func (*ListTopContactsResponse) String

func (x *ListTopContactsResponse) String() string

type LongPollingPayload

type LongPollingPayload struct {
	Data      *IncomingRPCMessage `protobuf:"bytes,2,opt,name=data,proto3,oneof" json:"data,omitempty"`
	Heartbeat *EmptyArr           `protobuf:"bytes,3,opt,name=heartbeat,proto3,oneof" json:"heartbeat,omitempty"`
	Ack       *StartAckMessage    `protobuf:"bytes,4,opt,name=ack,proto3,oneof" json:"ack,omitempty"`
	StartRead *EmptyArr           `protobuf:"bytes,5,opt,name=startRead,proto3,oneof" json:"startRead,omitempty"`
	// contains filtered or unexported fields
}

func (*LongPollingPayload) Descriptor deprecated

func (*LongPollingPayload) Descriptor() ([]byte, []int)

Deprecated: Use LongPollingPayload.ProtoReflect.Descriptor instead.

func (*LongPollingPayload) GetAck

func (x *LongPollingPayload) GetAck() *StartAckMessage

func (*LongPollingPayload) GetData

func (x *LongPollingPayload) GetData() *IncomingRPCMessage

func (*LongPollingPayload) GetHeartbeat

func (x *LongPollingPayload) GetHeartbeat() *EmptyArr

func (*LongPollingPayload) GetStartRead

func (x *LongPollingPayload) GetStartRead() *EmptyArr

func (*LongPollingPayload) ProtoMessage

func (*LongPollingPayload) ProtoMessage()

func (*LongPollingPayload) ProtoReflect

func (x *LongPollingPayload) ProtoReflect() protoreflect.Message

func (*LongPollingPayload) Reset

func (x *LongPollingPayload) Reset()

func (*LongPollingPayload) String

func (x *LongPollingPayload) String() string

type MediaContent

type MediaContent struct {
	Format                 MediaFormats `protobuf:"varint,1,opt,name=format,proto3,enum=conversations.MediaFormats" json:"format,omitempty"`
	MediaID                string       `protobuf:"bytes,2,opt,name=mediaID,proto3" json:"mediaID,omitempty"`
	MediaName              string       `protobuf:"bytes,4,opt,name=mediaName,proto3" json:"mediaName,omitempty"`
	Size                   int64        `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
	Dimensions             *Dimensions  `protobuf:"bytes,6,opt,name=dimensions,proto3" json:"dimensions,omitempty"`
	MediaData              []byte       `protobuf:"bytes,7,opt,name=mediaData,proto3" json:"mediaData,omitempty"`
	ThumbnailMediaID       string       `protobuf:"bytes,9,opt,name=thumbnailMediaID,proto3" json:"thumbnailMediaID,omitempty"`
	DecryptionKey          []byte       `protobuf:"bytes,11,opt,name=decryptionKey,proto3" json:"decryptionKey,omitempty"`
	ThumbnailDecryptionKey []byte       `protobuf:"bytes,12,opt,name=thumbnailDecryptionKey,proto3" json:"thumbnailDecryptionKey,omitempty"`
	MimeType               string       `protobuf:"bytes,14,opt,name=mimeType,proto3" json:"mimeType,omitempty"`
	// contains filtered or unexported fields
}

func (*MediaContent) Descriptor deprecated

func (*MediaContent) Descriptor() ([]byte, []int)

Deprecated: Use MediaContent.ProtoReflect.Descriptor instead.

func (*MediaContent) GetDecryptionKey

func (x *MediaContent) GetDecryptionKey() []byte

func (*MediaContent) GetDimensions

func (x *MediaContent) GetDimensions() *Dimensions

func (*MediaContent) GetFormat

func (x *MediaContent) GetFormat() MediaFormats

func (*MediaContent) GetMediaData

func (x *MediaContent) GetMediaData() []byte

func (*MediaContent) GetMediaID

func (x *MediaContent) GetMediaID() string

func (*MediaContent) GetMediaName

func (x *MediaContent) GetMediaName() string

func (*MediaContent) GetMimeType

func (x *MediaContent) GetMimeType() string

func (*MediaContent) GetSize

func (x *MediaContent) GetSize() int64

func (*MediaContent) GetThumbnailDecryptionKey

func (x *MediaContent) GetThumbnailDecryptionKey() []byte

func (*MediaContent) GetThumbnailMediaID

func (x *MediaContent) GetThumbnailMediaID() string

func (*MediaContent) ProtoMessage

func (*MediaContent) ProtoMessage()

func (*MediaContent) ProtoReflect

func (x *MediaContent) ProtoReflect() protoreflect.Message

func (*MediaContent) Reset

func (x *MediaContent) Reset()

func (*MediaContent) String

func (x *MediaContent) String() string

type MediaFormats

type MediaFormats int32
const (
	MediaFormats_UNSPECIFIED_TYPE       MediaFormats = 0
	MediaFormats_IMAGE_JPEG             MediaFormats = 1
	MediaFormats_IMAGE_JPG              MediaFormats = 2
	MediaFormats_IMAGE_PNG              MediaFormats = 3
	MediaFormats_IMAGE_GIF              MediaFormats = 4
	MediaFormats_IMAGE_WBMP             MediaFormats = 5
	MediaFormats_IMAGE_X_MS_BMP         MediaFormats = 6
	MediaFormats_IMAGE_UNSPECIFIED      MediaFormats = 7
	MediaFormats_VIDEO_MP4              MediaFormats = 8
	MediaFormats_VIDEO_3G2              MediaFormats = 9
	MediaFormats_VIDEO_3GPP             MediaFormats = 10
	MediaFormats_VIDEO_WEBM             MediaFormats = 11
	MediaFormats_VIDEO_MKV              MediaFormats = 12
	MediaFormats_VIDEO_UNSPECIFIED      MediaFormats = 13
	MediaFormats_AUDIO_AAC              MediaFormats = 14
	MediaFormats_AUDIO_AMR              MediaFormats = 15
	MediaFormats_AUDIO_MP3              MediaFormats = 16
	MediaFormats_AUDIO_MPEG             MediaFormats = 17
	MediaFormats_AUDIO_MPG              MediaFormats = 18
	MediaFormats_AUDIO_MP4              MediaFormats = 19
	MediaFormats_AUDIO_MP4_LATM         MediaFormats = 20
	MediaFormats_AUDIO_3GPP             MediaFormats = 21
	MediaFormats_AUDIO_OGG              MediaFormats = 22
	MediaFormats_AUDIO_UNSPECIFIED      MediaFormats = 23
	MediaFormats_TEXT_VCARD             MediaFormats = 24
	MediaFormats_APP_PDF                MediaFormats = 25
	MediaFormats_APP_TXT                MediaFormats = 26
	MediaFormats_APP_HTML               MediaFormats = 27
	MediaFormats_APP_DOC                MediaFormats = 28
	MediaFormats_APP_DOCX               MediaFormats = 29
	MediaFormats_APP_PPTX               MediaFormats = 30
	MediaFormats_APP_PPT                MediaFormats = 31
	MediaFormats_APP_XLSX               MediaFormats = 32
	MediaFormats_APP_XLS                MediaFormats = 33
	MediaFormats_APP_APK                MediaFormats = 34
	MediaFormats_APP_ZIP                MediaFormats = 35
	MediaFormats_APP_JAR                MediaFormats = 36
	MediaFormats_APP_UNSPECIFIED        MediaFormats = 37
	MediaFormats_CAL_TEXT_VCALENDAR     MediaFormats = 38
	MediaFormats_CAL_TEXT_XVCALENDAR    MediaFormats = 39
	MediaFormats_CAL_TEXT_CALENDAR      MediaFormats = 40
	MediaFormats_CAL_APPLICATION_VCS    MediaFormats = 41
	MediaFormats_CAL_APPLICATION_ICS    MediaFormats = 42
	MediaFormats_CAL_APPLICATION_HBSVCS MediaFormats = 43
)

func (MediaFormats) Descriptor

func (MediaFormats) Enum

func (x MediaFormats) Enum() *MediaFormats

func (MediaFormats) EnumDescriptor deprecated

func (MediaFormats) EnumDescriptor() ([]byte, []int)

Deprecated: Use MediaFormats.Descriptor instead.

func (MediaFormats) Number

func (MediaFormats) String

func (x MediaFormats) String() string

func (MediaFormats) Type

type Message

type Message struct {
	MessageID      string           `protobuf:"bytes,1,opt,name=messageID,proto3" json:"messageID,omitempty"`
	MsgType        *MsgType         `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType,omitempty"`
	MessageStatus  *MessageStatus   `protobuf:"bytes,4,opt,name=messageStatus,proto3" json:"messageStatus,omitempty"`
	Timestamp      int64            `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // check this
	ConversationID string           `protobuf:"bytes,7,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	ParticipantID  string           `protobuf:"bytes,9,opt,name=participantID,proto3" json:"participantID,omitempty"`
	MessageInfo    []*MessageInfo   `protobuf:"bytes,10,rep,name=messageInfo,proto3" json:"messageInfo,omitempty"`
	Type           int64            `protobuf:"varint,11,opt,name=type,proto3" json:"type,omitempty"` // 1 = sms, 2 = downloaded mms, 3 = undownloaded mms, 4 = rcs?
	TmpID          string           `protobuf:"bytes,12,opt,name=tmpID,proto3" json:"tmpID,omitempty"`
	Subject        *string          `protobuf:"bytes,14,opt,name=subject,proto3,oneof" json:"subject,omitempty"`
	SomeInt        int64            `protobuf:"varint,16,opt,name=someInt,proto3" json:"someInt,omitempty"`
	Reactions      []*ReactionEntry `protobuf:"bytes,19,rep,name=reactions,proto3" json:"reactions,omitempty"`
	ReplyMessage   *ReplyMessage    `protobuf:"bytes,21,opt,name=replyMessage,proto3,oneof" json:"replyMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*Message) Descriptor deprecated

func (*Message) Descriptor() ([]byte, []int)

Deprecated: Use Message.ProtoReflect.Descriptor instead.

func (*Message) GetConversationID

func (x *Message) GetConversationID() string

func (*Message) GetMessageID

func (x *Message) GetMessageID() string

func (*Message) GetMessageInfo

func (x *Message) GetMessageInfo() []*MessageInfo

func (*Message) GetMessageStatus

func (x *Message) GetMessageStatus() *MessageStatus

func (*Message) GetMsgType

func (x *Message) GetMsgType() *MsgType

func (*Message) GetParticipantID

func (x *Message) GetParticipantID() string

func (*Message) GetReactions

func (x *Message) GetReactions() []*ReactionEntry

func (*Message) GetReplyMessage

func (x *Message) GetReplyMessage() *ReplyMessage

func (*Message) GetSomeInt

func (x *Message) GetSomeInt() int64

func (*Message) GetSubject

func (x *Message) GetSubject() string

func (*Message) GetTimestamp

func (x *Message) GetTimestamp() int64

func (*Message) GetTmpID

func (x *Message) GetTmpID() string

func (*Message) GetType

func (x *Message) GetType() int64

func (*Message) ProtoMessage

func (*Message) ProtoMessage()

func (*Message) ProtoReflect

func (x *Message) ProtoReflect() protoreflect.Message

func (*Message) Reset

func (x *Message) Reset()

func (*Message) String

func (x *Message) String() string

type MessageContent

type MessageContent struct {
	Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageContent) Descriptor deprecated

func (*MessageContent) Descriptor() ([]byte, []int)

Deprecated: Use MessageContent.ProtoReflect.Descriptor instead.

func (*MessageContent) GetContent

func (x *MessageContent) GetContent() string

func (*MessageContent) ProtoMessage

func (*MessageContent) ProtoMessage()

func (*MessageContent) ProtoReflect

func (x *MessageContent) ProtoReflect() protoreflect.Message

func (*MessageContent) Reset

func (x *MessageContent) Reset()

func (*MessageContent) String

func (x *MessageContent) String() string

type MessageEvent

type MessageEvent struct {
	Data []*Message `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageEvent) Descriptor deprecated

func (*MessageEvent) Descriptor() ([]byte, []int)

Deprecated: Use MessageEvent.ProtoReflect.Descriptor instead.

func (*MessageEvent) GetData

func (x *MessageEvent) GetData() []*Message

func (*MessageEvent) ProtoMessage

func (*MessageEvent) ProtoMessage()

func (*MessageEvent) ProtoReflect

func (x *MessageEvent) ProtoReflect() protoreflect.Message

func (*MessageEvent) Reset

func (x *MessageEvent) Reset()

func (*MessageEvent) String

func (x *MessageEvent) String() string

type MessageInfo

type MessageInfo struct {
	ActionMessageID *string `protobuf:"bytes,1,opt,name=actionMessageID,proto3,oneof" json:"actionMessageID,omitempty"`
	// Types that are assignable to Data:
	//
	//	*MessageInfo_MessageContent
	//	*MessageInfo_MediaContent
	Data isMessageInfo_Data `protobuf_oneof:"data"`
	// contains filtered or unexported fields
}

func (*MessageInfo) Descriptor deprecated

func (*MessageInfo) Descriptor() ([]byte, []int)

Deprecated: Use MessageInfo.ProtoReflect.Descriptor instead.

func (*MessageInfo) GetActionMessageID

func (x *MessageInfo) GetActionMessageID() string

func (*MessageInfo) GetData

func (m *MessageInfo) GetData() isMessageInfo_Data

func (*MessageInfo) GetMediaContent

func (x *MessageInfo) GetMediaContent() *MediaContent

func (*MessageInfo) GetMessageContent

func (x *MessageInfo) GetMessageContent() *MessageContent

func (*MessageInfo) ProtoMessage

func (*MessageInfo) ProtoMessage()

func (*MessageInfo) ProtoReflect

func (x *MessageInfo) ProtoReflect() protoreflect.Message

func (*MessageInfo) Reset

func (x *MessageInfo) Reset()

func (*MessageInfo) String

func (x *MessageInfo) String() string

type MessageInfo_MediaContent

type MessageInfo_MediaContent struct {
	MediaContent *MediaContent `protobuf:"bytes,3,opt,name=mediaContent,proto3,oneof"`
}

type MessageInfo_MessageContent

type MessageInfo_MessageContent struct {
	MessageContent *MessageContent `protobuf:"bytes,2,opt,name=messageContent,proto3,oneof"`
}

type MessagePayload

type MessagePayload struct {
	TmpID                 string                 `protobuf:"bytes,1,opt,name=tmpID,proto3" json:"tmpID,omitempty"`
	MessagePayloadContent *MessagePayloadContent `protobuf:"bytes,6,opt,name=messagePayloadContent,proto3" json:"messagePayloadContent,omitempty"`
	ConversationID        string                 `protobuf:"bytes,7,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	ParticipantID         string                 `protobuf:"bytes,9,opt,name=participantID,proto3" json:"participantID,omitempty"`
	MessageInfo           []*MessageInfo         `protobuf:"bytes,10,rep,name=messageInfo,proto3" json:"messageInfo,omitempty"`
	TmpID2                string                 `protobuf:"bytes,12,opt,name=tmpID2,proto3" json:"tmpID2,omitempty"`
	// contains filtered or unexported fields
}

func (*MessagePayload) Descriptor deprecated

func (*MessagePayload) Descriptor() ([]byte, []int)

Deprecated: Use MessagePayload.ProtoReflect.Descriptor instead.

func (*MessagePayload) GetConversationID

func (x *MessagePayload) GetConversationID() string

func (*MessagePayload) GetMessageInfo

func (x *MessagePayload) GetMessageInfo() []*MessageInfo

func (*MessagePayload) GetMessagePayloadContent

func (x *MessagePayload) GetMessagePayloadContent() *MessagePayloadContent

func (*MessagePayload) GetParticipantID

func (x *MessagePayload) GetParticipantID() string

func (*MessagePayload) GetTmpID

func (x *MessagePayload) GetTmpID() string

func (*MessagePayload) GetTmpID2

func (x *MessagePayload) GetTmpID2() string

func (*MessagePayload) ProtoMessage

func (*MessagePayload) ProtoMessage()

func (*MessagePayload) ProtoReflect

func (x *MessagePayload) ProtoReflect() protoreflect.Message

func (*MessagePayload) Reset

func (x *MessagePayload) Reset()

func (*MessagePayload) String

func (x *MessagePayload) String() string

type MessagePayloadContent

type MessagePayloadContent struct {
	MessageContent *MessageContent `protobuf:"bytes,1,opt,name=messageContent,proto3" json:"messageContent,omitempty"`
	// contains filtered or unexported fields
}

func (*MessagePayloadContent) Descriptor deprecated

func (*MessagePayloadContent) Descriptor() ([]byte, []int)

Deprecated: Use MessagePayloadContent.ProtoReflect.Descriptor instead.

func (*MessagePayloadContent) GetMessageContent

func (x *MessagePayloadContent) GetMessageContent() *MessageContent

func (*MessagePayloadContent) ProtoMessage

func (*MessagePayloadContent) ProtoMessage()

func (*MessagePayloadContent) ProtoReflect

func (x *MessagePayloadContent) ProtoReflect() protoreflect.Message

func (*MessagePayloadContent) Reset

func (x *MessagePayloadContent) Reset()

func (*MessagePayloadContent) String

func (x *MessagePayloadContent) String() string

type MessageReadRequest

type MessageReadRequest struct {
	ConversationID string `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	MessageID      string `protobuf:"bytes,3,opt,name=messageID,proto3" json:"messageID,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageReadRequest) Descriptor deprecated

func (*MessageReadRequest) Descriptor() ([]byte, []int)

Deprecated: Use MessageReadRequest.ProtoReflect.Descriptor instead.

func (*MessageReadRequest) GetConversationID

func (x *MessageReadRequest) GetConversationID() string

func (*MessageReadRequest) GetMessageID

func (x *MessageReadRequest) GetMessageID() string

func (*MessageReadRequest) ProtoMessage

func (*MessageReadRequest) ProtoMessage()

func (*MessageReadRequest) ProtoReflect

func (x *MessageReadRequest) ProtoReflect() protoreflect.Message

func (*MessageReadRequest) Reset

func (x *MessageReadRequest) Reset()

func (*MessageReadRequest) String

func (x *MessageReadRequest) String() string

type MessageStatus

type MessageStatus struct {
	Status     MessageStatusType `protobuf:"varint,2,opt,name=status,proto3,enum=conversations.MessageStatusType" json:"status,omitempty"`
	SubCode    int64             `protobuf:"varint,3,opt,name=subCode,proto3" json:"subCode,omitempty"`
	ErrMsg     string            `protobuf:"bytes,4,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	StatusText string            `protobuf:"bytes,5,opt,name=statusText,proto3" json:"statusText,omitempty"`
	ThirdCode  int64             `protobuf:"varint,6,opt,name=thirdCode,proto3" json:"thirdCode,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageStatus) Descriptor deprecated

func (*MessageStatus) Descriptor() ([]byte, []int)

Deprecated: Use MessageStatus.ProtoReflect.Descriptor instead.

func (*MessageStatus) GetErrMsg

func (x *MessageStatus) GetErrMsg() string

func (*MessageStatus) GetStatus

func (x *MessageStatus) GetStatus() MessageStatusType

func (*MessageStatus) GetStatusText

func (x *MessageStatus) GetStatusText() string

func (*MessageStatus) GetSubCode

func (x *MessageStatus) GetSubCode() int64

func (*MessageStatus) GetThirdCode

func (x *MessageStatus) GetThirdCode() int64

func (*MessageStatus) ProtoMessage

func (*MessageStatus) ProtoMessage()

func (*MessageStatus) ProtoReflect

func (x *MessageStatus) ProtoReflect() protoreflect.Message

func (*MessageStatus) Reset

func (x *MessageStatus) Reset()

func (*MessageStatus) String

func (x *MessageStatus) String() string

type MessageStatusType

type MessageStatusType int32
const (
	MessageStatusType_STATUS_UNKNOWN                                                                    MessageStatusType = 0
	MessageStatusType_OUTGOING_COMPLETE                                                                 MessageStatusType = 1
	MessageStatusType_OUTGOING_DELIVERED                                                                MessageStatusType = 2
	MessageStatusType_OUTGOING_DISPLAYED                                                                MessageStatusType = 11
	MessageStatusType_OUTGOING_DRAFT                                                                    MessageStatusType = 3
	MessageStatusType_OUTGOING_SEND_AFTER_PROCESSING                                                    MessageStatusType = 10
	MessageStatusType_OUTGOING_YET_TO_SEND                                                              MessageStatusType = 4
	MessageStatusType_OUTGOING_SENDING                                                                  MessageStatusType = 5
	MessageStatusType_OUTGOING_RESENDING                                                                MessageStatusType = 6
	MessageStatusType_OUTGOING_AWAITING_RETRY                                                           MessageStatusType = 7
	MessageStatusType_OUTGOING_FAILED_GENERIC                                                           MessageStatusType = 8
	MessageStatusType_OUTGOING_FAILED_EMERGENCY_NUMBER                                                  MessageStatusType = 9
	MessageStatusType_OUTGOING_CANCELED                                                                 MessageStatusType = 12
	MessageStatusType_OUTGOING_FAILED_TOO_LARGE                                                         MessageStatusType = 13
	MessageStatusType_OUTGOING_NOT_DELIVERED_YET                                                        MessageStatusType = 14
	MessageStatusType_OUTGOING_REVOCATION_PENDING                                                       MessageStatusType = 15
	MessageStatusType_OUTGOING_SCHEDULED                                                                MessageStatusType = 16
	MessageStatusType_OUTGOING_FAILED_RECIPIENT_LOST_RCS                                                MessageStatusType = 17
	MessageStatusType_OUTGOING_FAILED_NO_RETRY_NO_FALLBACK                                              MessageStatusType = 18
	MessageStatusType_OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT                                         MessageStatusType = 19
	MessageStatusType_OUTGOING_VALIDATING                                                               MessageStatusType = 20
	MessageStatusType_OUTGOING_FAILED_RECIPIENT_LOST_ENCRYPTION                                         MessageStatusType = 21
	MessageStatusType_OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT_NO_MORE_RETRY                           MessageStatusType = 22
	MessageStatusType_INCOMING_COMPLETE                                                                 MessageStatusType = 100
	MessageStatusType_INCOMING_YET_TO_MANUAL_DOWNLOAD                                                   MessageStatusType = 101
	MessageStatusType_INCOMING_RETRYING_MANUAL_DOWNLOAD                                                 MessageStatusType = 102
	MessageStatusType_INCOMING_MANUAL_DOWNLOADING                                                       MessageStatusType = 103
	MessageStatusType_INCOMING_RETRYING_AUTO_DOWNLOAD                                                   MessageStatusType = 104
	MessageStatusType_INCOMING_AUTO_DOWNLOADING                                                         MessageStatusType = 105
	MessageStatusType_INCOMING_DOWNLOAD_FAILED                                                          MessageStatusType = 106
	MessageStatusType_INCOMING_EXPIRED_OR_NOT_AVAILABLE                                                 MessageStatusType = 107
	MessageStatusType_INCOMING_DELIVERED                                                                MessageStatusType = 108
	MessageStatusType_INCOMING_DISPLAYED                                                                MessageStatusType = 109
	MessageStatusType_INCOMING_DOWNLOAD_CANCELED                                                        MessageStatusType = 110
	MessageStatusType_INCOMING_DOWNLOAD_FAILED_TOO_LARGE                                                MessageStatusType = 111
	MessageStatusType_INCOMING_DOWNLOAD_FAILED_SIM_HAS_NO_DATA                                          MessageStatusType = 112
	MessageStatusType_INCOMING_FAILED_TO_DECRYPT                                                        MessageStatusType = 113
	MessageStatusType_INCOMING_DECRYPTION_ABORTED                                                       MessageStatusType = 114
	MessageStatusType_TOMBSTONE_PARTICIPANT_JOINED                                                      MessageStatusType = 200
	MessageStatusType_TOMBSTONE_PARTICIPANT_LEFT                                                        MessageStatusType = 201
	MessageStatusType_TOMBSTONE_SELF_LEFT                                                               MessageStatusType = 202
	MessageStatusType_TOMBSTONE_RCS_GROUP_CREATED                                                       MessageStatusType = 203
	MessageStatusType_TOMBSTONE_MMS_GROUP_CREATED                                                       MessageStatusType = 204
	MessageStatusType_TOMBSTONE_SMS_BROADCAST_CREATED                                                   MessageStatusType = 205
	MessageStatusType_TOMBSTONE_ONE_ON_ONE_SMS_CREATED                                                  MessageStatusType = 206
	MessageStatusType_TOMBSTONE_ONE_ON_ONE_RCS_CREATED                                                  MessageStatusType = 207
	MessageStatusType_TOMBSTONE_SWITCH_TO_GROUP_MMS                                                     MessageStatusType = 208
	MessageStatusType_TOMBSTONE_SWITCH_TO_BROADCAST_SMS                                                 MessageStatusType = 209
	MessageStatusType_TOMBSTONE_SHOW_LINK_PREVIEWS                                                      MessageStatusType = 210
	MessageStatusType_TOMBSTONE_GROUP_RENAMED_LOCAL                                                     MessageStatusType = 211
	MessageStatusType_TOMBSTONE_VERIFIED_SMS_APPLICABLE                                                 MessageStatusType = 212
	MessageStatusType_TOMBSTONE_ENCRYPTED_ONE_ON_ONE_RCS_CREATED                                        MessageStatusType = 213
	MessageStatusType_TOMBSTONE_PROTOCOL_SWITCH_TO_TEXT                                                 MessageStatusType = 214
	MessageStatusType_TOMBSTONE_PROTOCOL_SWITCH_TO_RCS                                                  MessageStatusType = 215
	MessageStatusType_TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS                                        MessageStatusType = 216
	MessageStatusType_TOMBSTONE_GROUP_RENAMED_GLOBAL                                                    MessageStatusType = 217
	MessageStatusType_TOMBSTONE_GROUP_NAME_CLEARED_GLOBAL                                               MessageStatusType = 218
	MessageStatusType_TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS_INFO                                   MessageStatusType = 219
	MessageStatusType_TOMBSTONE_SELF_REMOVED_FROM_GROUP                                                 MessageStatusType = 220
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_GROUP                           MessageStatusType = 221
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SMS_NORM_PARTICIPANT_UPGRADED                            MessageStatusType = 222
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_RCS_NORM_PARTICIPANT_UPGRADED                            MessageStatusType = 223
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_RCS_NORM_PARTICIPANT_UPGRADED                  MessageStatusType = 224
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED                       MessageStatusType = 225
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED_INFO                  MessageStatusType = 226
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_LEFT                         MessageStatusType = 227
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_SELF_LEFT                                MessageStatusType = 228
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_CREATED                                  MessageStatusType = 229
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SELF_REMOVED_FROM_ENCRYPTED_GROUP                        MessageStatusType = 230
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_ENCRYPTED_GROUP                 MessageStatusType = 231
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SUGGESTION_SHORTCUT_STAR_TOOLSTONE                       MessageStatusType = 232
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_RCS_TO_E2EE                        MessageStatusType = 233
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_RCS                        MessageStatusType = 234
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_TEXT_TO_E2EE                             MessageStatusType = 235
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_TEXT                             MessageStatusType = 236
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_RCS_TO_E2EE                              MessageStatusType = 237
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_RCS                              MessageStatusType = 238
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_EDUCATION                                      MessageStatusType = 239
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_RBM_SIM_SWITCH                                           MessageStatusType = 240
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_RBM_PRIVACY_NOTICE                                       MessageStatusType = 241
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PENPAL_CONVERSATION_NOTICE                               MessageStatusType = 242
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_MEET_OTHER_PARTICIPANT_REACHABLE                         MessageStatusType = 243
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_MISSED_VIDEO_CALL                                        MessageStatusType = 244
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_THEME_CHANGE                                 MessageStatusType = 245
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_SUCCESS_HELP_STILL_NEEDED     MessageStatusType = 246
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_SUCCESS_HELP_NO_LONGER_NEEDED MessageStatusType = 247
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_FAILURE_HELP_STILL_NEEDED     MessageStatusType = 248
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_FAILURE_HELP_NO_LONGER_NEEDED MessageStatusType = 249
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_END_OF_EMERGENCY_UNEXPECTED_END                MessageStatusType = 250
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SATELLITE_MESSAGING_TOOLSTONE                            MessageStatusType = 251
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_MMS                        MessageStatusType = 252
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_PENPAL_PROACTIVE_MESSAGE_NOTICE                          MessageStatusType = 253
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_SUGGESTION_POSSIBLE_SCAM_TOOLSTONE                       MessageStatusType = 254
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_CHATBOT_UNSUBSCRIBE_SENT                                 MessageStatusType = 255
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_CHATBOT_SUBSCRIBE_SENT                                   MessageStatusType = 256
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_CHATBOT_UNSUBSCRIBE_CONFIRMED                            MessageStatusType = 257
	MessageStatusType_MESSAGE_STATUS_TOMBSTONE_CHATBOT_SUBSCRIBE_CONFIRMED                              MessageStatusType = 258
	MessageStatusType_MESSAGE_DELETED                                                                   MessageStatusType = 300
)

func (MessageStatusType) Descriptor

func (MessageStatusType) Enum

func (MessageStatusType) EnumDescriptor deprecated

func (MessageStatusType) EnumDescriptor() ([]byte, []int)

Deprecated: Use MessageStatusType.Descriptor instead.

func (MessageStatusType) Number

func (MessageStatusType) String

func (x MessageStatusType) String() string

func (MessageStatusType) Type

type MessageType

type MessageType int32
const (
	MessageType_UNKNOWN_MESSAGE_TYPE MessageType = 0
	MessageType_BUGLE_MESSAGE        MessageType = 2
	MessageType_GAIA_1               MessageType = 3
	MessageType_BUGLE_ANNOTATION     MessageType = 16
	MessageType_GAIA_2               MessageType = 20
)

func (MessageType) Descriptor

func (MessageType) Enum

func (x MessageType) Enum() *MessageType

func (MessageType) EnumDescriptor deprecated

func (MessageType) EnumDescriptor() ([]byte, []int)

Deprecated: Use MessageType.Descriptor instead.

func (MessageType) Number

func (x MessageType) Number() protoreflect.EnumNumber

func (MessageType) String

func (x MessageType) String() string

func (MessageType) Type

type MsgType

type MsgType struct {
	Type int64 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgType) Descriptor deprecated

func (*MsgType) Descriptor() ([]byte, []int)

Deprecated: Use MsgType.ProtoReflect.Descriptor instead.

func (*MsgType) GetType

func (x *MsgType) GetType() int64

func (*MsgType) ProtoMessage

func (*MsgType) ProtoMessage()

func (*MsgType) ProtoReflect

func (x *MsgType) ProtoReflect() protoreflect.Message

func (*MsgType) Reset

func (x *MsgType) Reset()

func (*MsgType) String

func (x *MsgType) String() string

type Muted

type Muted struct {
	IsMuted int64 `protobuf:"varint,1,opt,name=isMuted,proto3" json:"isMuted,omitempty"`
	// contains filtered or unexported fields
}

func (*Muted) Descriptor deprecated

func (*Muted) Descriptor() ([]byte, []int)

Deprecated: Use Muted.ProtoReflect.Descriptor instead.

func (*Muted) GetIsMuted

func (x *Muted) GetIsMuted() int64

func (*Muted) ProtoMessage

func (*Muted) ProtoMessage()

func (*Muted) ProtoReflect

func (x *Muted) ProtoReflect() protoreflect.Message

func (*Muted) Reset

func (x *Muted) Reset()

func (*Muted) String

func (x *Muted) String() string

type NotifyDittoActivityRequest

type NotifyDittoActivityRequest struct {

	// This is not actually a boolean: after logging out, field 2 has value 2, and field 3 has value 1.
	Success bool `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*NotifyDittoActivityRequest) Descriptor deprecated

func (*NotifyDittoActivityRequest) Descriptor() ([]byte, []int)

Deprecated: Use NotifyDittoActivityRequest.ProtoReflect.Descriptor instead.

func (*NotifyDittoActivityRequest) GetSuccess

func (x *NotifyDittoActivityRequest) GetSuccess() bool

func (*NotifyDittoActivityRequest) ProtoMessage

func (*NotifyDittoActivityRequest) ProtoMessage()

func (*NotifyDittoActivityRequest) ProtoReflect

func (*NotifyDittoActivityRequest) Reset

func (x *NotifyDittoActivityRequest) Reset()

func (*NotifyDittoActivityRequest) String

func (x *NotifyDittoActivityRequest) String() string

type NotifyDittoActivityResponse

type NotifyDittoActivityResponse struct {
	// contains filtered or unexported fields
}

func (*NotifyDittoActivityResponse) Descriptor deprecated

func (*NotifyDittoActivityResponse) Descriptor() ([]byte, []int)

Deprecated: Use NotifyDittoActivityResponse.ProtoReflect.Descriptor instead.

func (*NotifyDittoActivityResponse) ProtoMessage

func (*NotifyDittoActivityResponse) ProtoMessage()

func (*NotifyDittoActivityResponse) ProtoReflect

func (*NotifyDittoActivityResponse) Reset

func (x *NotifyDittoActivityResponse) Reset()

func (*NotifyDittoActivityResponse) String

func (x *NotifyDittoActivityResponse) String() string

type OpenConversationRequest

type OpenConversationRequest struct {
	ConversationID string `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenConversationRequest) Descriptor deprecated

func (*OpenConversationRequest) Descriptor() ([]byte, []int)

Deprecated: Use OpenConversationRequest.ProtoReflect.Descriptor instead.

func (*OpenConversationRequest) GetConversationID

func (x *OpenConversationRequest) GetConversationID() string

func (*OpenConversationRequest) ProtoMessage

func (*OpenConversationRequest) ProtoMessage()

func (*OpenConversationRequest) ProtoReflect

func (x *OpenConversationRequest) ProtoReflect() protoreflect.Message

func (*OpenConversationRequest) Reset

func (x *OpenConversationRequest) Reset()

func (*OpenConversationRequest) String

func (x *OpenConversationRequest) String() string

type OutgoingRPCData

type OutgoingRPCData struct {
	RequestID            string     `protobuf:"bytes,1,opt,name=requestID,proto3" json:"requestID,omitempty"`
	Action               ActionType `protobuf:"varint,2,opt,name=action,proto3,enum=rpc.ActionType" json:"action,omitempty"`
	UnencryptedProtoData []byte     `protobuf:"bytes,3,opt,name=unencryptedProtoData,proto3" json:"unencryptedProtoData,omitempty"`
	EncryptedProtoData   []byte     `protobuf:"bytes,5,opt,name=encryptedProtoData,proto3" json:"encryptedProtoData,omitempty"`
	SessionID            string     `protobuf:"bytes,6,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCData) Descriptor deprecated

func (*OutgoingRPCData) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCData.ProtoReflect.Descriptor instead.

func (*OutgoingRPCData) GetAction

func (x *OutgoingRPCData) GetAction() ActionType

func (*OutgoingRPCData) GetEncryptedProtoData

func (x *OutgoingRPCData) GetEncryptedProtoData() []byte

func (*OutgoingRPCData) GetRequestID

func (x *OutgoingRPCData) GetRequestID() string

func (*OutgoingRPCData) GetSessionID

func (x *OutgoingRPCData) GetSessionID() string

func (*OutgoingRPCData) GetUnencryptedProtoData

func (x *OutgoingRPCData) GetUnencryptedProtoData() []byte

func (*OutgoingRPCData) ProtoMessage

func (*OutgoingRPCData) ProtoMessage()

func (*OutgoingRPCData) ProtoReflect

func (x *OutgoingRPCData) ProtoReflect() protoreflect.Message

func (*OutgoingRPCData) Reset

func (x *OutgoingRPCData) Reset()

func (*OutgoingRPCData) String

func (x *OutgoingRPCData) String() string

type OutgoingRPCMessage

type OutgoingRPCMessage struct {
	Mobile              *Device                  `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
	Data                *OutgoingRPCMessage_Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Auth                *OutgoingRPCMessage_Auth `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"`
	TTL                 int64                    `protobuf:"varint,5,opt,name=TTL,proto3" json:"TTL,omitempty"`
	DestRegistrationIDs []string                 `protobuf:"bytes,9,rep,name=destRegistrationIDs,proto3" json:"destRegistrationIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCMessage) Descriptor deprecated

func (*OutgoingRPCMessage) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCMessage.ProtoReflect.Descriptor instead.

func (*OutgoingRPCMessage) GetAuth

func (*OutgoingRPCMessage) GetData

func (*OutgoingRPCMessage) GetDestRegistrationIDs

func (x *OutgoingRPCMessage) GetDestRegistrationIDs() []string

func (*OutgoingRPCMessage) GetMobile

func (x *OutgoingRPCMessage) GetMobile() *Device

func (*OutgoingRPCMessage) GetTTL

func (x *OutgoingRPCMessage) GetTTL() int64

func (*OutgoingRPCMessage) ProtoMessage

func (*OutgoingRPCMessage) ProtoMessage()

func (*OutgoingRPCMessage) ProtoReflect

func (x *OutgoingRPCMessage) ProtoReflect() protoreflect.Message

func (*OutgoingRPCMessage) Reset

func (x *OutgoingRPCMessage) Reset()

func (*OutgoingRPCMessage) String

func (x *OutgoingRPCMessage) String() string

type OutgoingRPCMessage_Auth

type OutgoingRPCMessage_Auth struct {
	RequestID        string         `protobuf:"bytes,1,opt,name=requestID,proto3" json:"requestID,omitempty"`
	TachyonAuthToken []byte         `protobuf:"bytes,6,opt,name=tachyonAuthToken,proto3" json:"tachyonAuthToken,omitempty"`
	ConfigVersion    *ConfigVersion `protobuf:"bytes,7,opt,name=configVersion,proto3" json:"configVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCMessage_Auth) Descriptor deprecated

func (*OutgoingRPCMessage_Auth) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCMessage_Auth.ProtoReflect.Descriptor instead.

func (*OutgoingRPCMessage_Auth) GetConfigVersion

func (x *OutgoingRPCMessage_Auth) GetConfigVersion() *ConfigVersion

func (*OutgoingRPCMessage_Auth) GetRequestID

func (x *OutgoingRPCMessage_Auth) GetRequestID() string

func (*OutgoingRPCMessage_Auth) GetTachyonAuthToken

func (x *OutgoingRPCMessage_Auth) GetTachyonAuthToken() []byte

func (*OutgoingRPCMessage_Auth) ProtoMessage

func (*OutgoingRPCMessage_Auth) ProtoMessage()

func (*OutgoingRPCMessage_Auth) ProtoReflect

func (x *OutgoingRPCMessage_Auth) ProtoReflect() protoreflect.Message

func (*OutgoingRPCMessage_Auth) Reset

func (x *OutgoingRPCMessage_Auth) Reset()

func (*OutgoingRPCMessage_Auth) String

func (x *OutgoingRPCMessage_Auth) String() string

type OutgoingRPCMessage_Data

type OutgoingRPCMessage_Data struct {
	RequestID  string     `protobuf:"bytes,1,opt,name=requestID,proto3" json:"requestID,omitempty"`
	BugleRoute BugleRoute `protobuf:"varint,2,opt,name=bugleRoute,proto3,enum=rpc.BugleRoute" json:"bugleRoute,omitempty"`
	// OutgoingRPCData encoded as bytes
	MessageData     []byte                        `protobuf:"bytes,12,opt,name=messageData,proto3" json:"messageData,omitempty"`
	MessageTypeData *OutgoingRPCMessage_Data_Type `protobuf:"bytes,23,opt,name=messageTypeData,proto3" json:"messageTypeData,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCMessage_Data) Descriptor deprecated

func (*OutgoingRPCMessage_Data) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCMessage_Data.ProtoReflect.Descriptor instead.

func (*OutgoingRPCMessage_Data) GetBugleRoute

func (x *OutgoingRPCMessage_Data) GetBugleRoute() BugleRoute

func (*OutgoingRPCMessage_Data) GetMessageData

func (x *OutgoingRPCMessage_Data) GetMessageData() []byte

func (*OutgoingRPCMessage_Data) GetMessageTypeData

func (x *OutgoingRPCMessage_Data) GetMessageTypeData() *OutgoingRPCMessage_Data_Type

func (*OutgoingRPCMessage_Data) GetRequestID

func (x *OutgoingRPCMessage_Data) GetRequestID() string

func (*OutgoingRPCMessage_Data) ProtoMessage

func (*OutgoingRPCMessage_Data) ProtoMessage()

func (*OutgoingRPCMessage_Data) ProtoReflect

func (x *OutgoingRPCMessage_Data) ProtoReflect() protoreflect.Message

func (*OutgoingRPCMessage_Data) Reset

func (x *OutgoingRPCMessage_Data) Reset()

func (*OutgoingRPCMessage_Data) String

func (x *OutgoingRPCMessage_Data) String() string

type OutgoingRPCMessage_Data_Type

type OutgoingRPCMessage_Data_Type struct {
	EmptyArr    *EmptyArr   `protobuf:"bytes,1,opt,name=emptyArr,proto3" json:"emptyArr,omitempty"`
	MessageType MessageType `protobuf:"varint,2,opt,name=messageType,proto3,enum=rpc.MessageType" json:"messageType,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCMessage_Data_Type) Descriptor deprecated

func (*OutgoingRPCMessage_Data_Type) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCMessage_Data_Type.ProtoReflect.Descriptor instead.

func (*OutgoingRPCMessage_Data_Type) GetEmptyArr

func (x *OutgoingRPCMessage_Data_Type) GetEmptyArr() *EmptyArr

func (*OutgoingRPCMessage_Data_Type) GetMessageType

func (x *OutgoingRPCMessage_Data_Type) GetMessageType() MessageType

func (*OutgoingRPCMessage_Data_Type) ProtoMessage

func (*OutgoingRPCMessage_Data_Type) ProtoMessage()

func (*OutgoingRPCMessage_Data_Type) ProtoReflect

func (*OutgoingRPCMessage_Data_Type) Reset

func (x *OutgoingRPCMessage_Data_Type) Reset()

func (*OutgoingRPCMessage_Data_Type) String

type OutgoingRPCResponse

type OutgoingRPCResponse struct {
	SomeIdentifier *OutgoingRPCResponse_SomeIdentifier `protobuf:"bytes,1,opt,name=someIdentifier,proto3" json:"someIdentifier,omitempty"`
	// This is not present for AckMessage responses, only for SendMessage
	Timestamp *string `protobuf:"bytes,2,opt,name=timestamp,proto3,oneof" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCResponse) Descriptor deprecated

func (*OutgoingRPCResponse) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCResponse.ProtoReflect.Descriptor instead.

func (*OutgoingRPCResponse) GetSomeIdentifier

func (*OutgoingRPCResponse) GetTimestamp

func (x *OutgoingRPCResponse) GetTimestamp() string

func (*OutgoingRPCResponse) ProtoMessage

func (*OutgoingRPCResponse) ProtoMessage()

func (*OutgoingRPCResponse) ProtoReflect

func (x *OutgoingRPCResponse) ProtoReflect() protoreflect.Message

func (*OutgoingRPCResponse) Reset

func (x *OutgoingRPCResponse) Reset()

func (*OutgoingRPCResponse) String

func (x *OutgoingRPCResponse) String() string

type OutgoingRPCResponse_SomeIdentifier

type OutgoingRPCResponse_SomeIdentifier struct {

	// 1 -> unknown
	SomeNumber string `protobuf:"bytes,2,opt,name=someNumber,proto3" json:"someNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*OutgoingRPCResponse_SomeIdentifier) Descriptor deprecated

func (*OutgoingRPCResponse_SomeIdentifier) Descriptor() ([]byte, []int)

Deprecated: Use OutgoingRPCResponse_SomeIdentifier.ProtoReflect.Descriptor instead.

func (*OutgoingRPCResponse_SomeIdentifier) GetSomeNumber

func (x *OutgoingRPCResponse_SomeIdentifier) GetSomeNumber() string

func (*OutgoingRPCResponse_SomeIdentifier) ProtoMessage

func (*OutgoingRPCResponse_SomeIdentifier) ProtoMessage()

func (*OutgoingRPCResponse_SomeIdentifier) ProtoReflect

func (*OutgoingRPCResponse_SomeIdentifier) Reset

func (*OutgoingRPCResponse_SomeIdentifier) String

type PairedData

type PairedData struct {
	Mobile    *Device    `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
	TokenData *TokenData `protobuf:"bytes,2,opt,name=tokenData,proto3" json:"tokenData,omitempty"`
	Browser   *Device    `protobuf:"bytes,3,opt,name=browser,proto3" json:"browser,omitempty"`
	// contains filtered or unexported fields
}

func (*PairedData) Descriptor deprecated

func (*PairedData) Descriptor() ([]byte, []int)

Deprecated: Use PairedData.ProtoReflect.Descriptor instead.

func (*PairedData) GetBrowser

func (x *PairedData) GetBrowser() *Device

func (*PairedData) GetMobile

func (x *PairedData) GetMobile() *Device

func (*PairedData) GetTokenData

func (x *PairedData) GetTokenData() *TokenData

func (*PairedData) ProtoMessage

func (*PairedData) ProtoMessage()

func (*PairedData) ProtoReflect

func (x *PairedData) ProtoReflect() protoreflect.Message

func (*PairedData) Reset

func (x *PairedData) Reset()

func (*PairedData) String

func (x *PairedData) String() string

type Participant

type Participant struct {
	ID              *SmallInfo `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
	FirstName       string     `protobuf:"bytes,2,opt,name=firstName,proto3" json:"firstName,omitempty"`
	FullName        string     `protobuf:"bytes,3,opt,name=fullName,proto3" json:"fullName,omitempty"`
	AvatarHexColor  string     `protobuf:"bytes,5,opt,name=avatarHexColor,proto3" json:"avatarHexColor,omitempty"`
	IsMe            bool       `protobuf:"varint,6,opt,name=isMe,proto3" json:"isMe,omitempty"`
	Muted           *Muted     `protobuf:"bytes,7,opt,name=muted,proto3" json:"muted,omitempty"`
	IsVisible       bool       `protobuf:"varint,8,opt,name=isVisible,proto3" json:"isVisible,omitempty"`
	ContactID       string     `protobuf:"bytes,10,opt,name=contactID,proto3" json:"contactID,omitempty"`
	Bs              int64      `protobuf:"varint,14,opt,name=bs,proto3" json:"bs,omitempty"`
	FormattedNumber string     `protobuf:"bytes,15,opt,name=formattedNumber,proto3" json:"formattedNumber,omitempty"`
	SomeInt1        int64      `protobuf:"varint,19,opt,name=someInt1,proto3" json:"someInt1,omitempty"`
	SomeInt2        int64      `protobuf:"varint,20,opt,name=someInt2,proto3" json:"someInt2,omitempty"`
	// contains filtered or unexported fields
}

func (*Participant) Descriptor deprecated

func (*Participant) Descriptor() ([]byte, []int)

Deprecated: Use Participant.ProtoReflect.Descriptor instead.

func (*Participant) GetAvatarHexColor

func (x *Participant) GetAvatarHexColor() string

func (*Participant) GetBs

func (x *Participant) GetBs() int64

func (*Participant) GetContactID

func (x *Participant) GetContactID() string

func (*Participant) GetFirstName

func (x *Participant) GetFirstName() string

func (*Participant) GetFormattedNumber

func (x *Participant) GetFormattedNumber() string

func (*Participant) GetFullName

func (x *Participant) GetFullName() string

func (*Participant) GetID

func (x *Participant) GetID() *SmallInfo

func (*Participant) GetIsMe

func (x *Participant) GetIsMe() bool

func (*Participant) GetIsVisible

func (x *Participant) GetIsVisible() bool

func (*Participant) GetMuted

func (x *Participant) GetMuted() *Muted

func (*Participant) GetSomeInt1

func (x *Participant) GetSomeInt1() int64

func (*Participant) GetSomeInt2

func (x *Participant) GetSomeInt2() int64

func (*Participant) ProtoMessage

func (*Participant) ProtoMessage()

func (*Participant) ProtoReflect

func (x *Participant) ProtoReflect() protoreflect.Message

func (*Participant) Reset

func (x *Participant) Reset()

func (*Participant) String

func (x *Participant) String() string

type PrepareOpenConversationRequest

type PrepareOpenConversationRequest struct {
	Field2 int64 `protobuf:"varint,2,opt,name=field2,proto3" json:"field2,omitempty"` // only seen value 1
	// contains filtered or unexported fields
}

func (*PrepareOpenConversationRequest) Descriptor deprecated

func (*PrepareOpenConversationRequest) Descriptor() ([]byte, []int)

Deprecated: Use PrepareOpenConversationRequest.ProtoReflect.Descriptor instead.

func (*PrepareOpenConversationRequest) GetField2

func (x *PrepareOpenConversationRequest) GetField2() int64

func (*PrepareOpenConversationRequest) ProtoMessage

func (*PrepareOpenConversationRequest) ProtoMessage()

func (*PrepareOpenConversationRequest) ProtoReflect

func (*PrepareOpenConversationRequest) Reset

func (x *PrepareOpenConversationRequest) Reset()

func (*PrepareOpenConversationRequest) String

type PublicKeyType

type PublicKeyType int32

A list of supported public key types

const (
	PublicKeyType_UNKNOWN_PUBLIC_KEY_TYPE PublicKeyType = 0
	PublicKeyType_EC_P256                 PublicKeyType = 1
	PublicKeyType_RSA2048                 PublicKeyType = 2
	// 2048-bit MODP group 14, from RFC 3526
	PublicKeyType_DH2048_MODP PublicKeyType = 3
)

func (PublicKeyType) Descriptor

func (PublicKeyType) Enum

func (x PublicKeyType) Enum() *PublicKeyType

func (PublicKeyType) EnumDescriptor deprecated

func (PublicKeyType) EnumDescriptor() ([]byte, []int)

Deprecated: Use PublicKeyType.Descriptor instead.

func (PublicKeyType) Number

func (PublicKeyType) String

func (x PublicKeyType) String() string

func (PublicKeyType) Type

type RCSChats

type RCSChats struct {
	Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*RCSChats) Descriptor deprecated

func (*RCSChats) Descriptor() ([]byte, []int)

Deprecated: Use RCSChats.ProtoReflect.Descriptor instead.

func (*RCSChats) GetEnabled

func (x *RCSChats) GetEnabled() bool

func (*RCSChats) ProtoMessage

func (*RCSChats) ProtoMessage()

func (*RCSChats) ProtoReflect

func (x *RCSChats) ProtoReflect() protoreflect.Message

func (*RCSChats) Reset

func (x *RCSChats) Reset()

func (*RCSChats) String

func (x *RCSChats) String() string

type RCSSettings

type RCSSettings struct {
	IsEnabled            bool `protobuf:"varint,1,opt,name=isEnabled,proto3" json:"isEnabled,omitempty"`
	SendReadReceipts     bool `protobuf:"varint,2,opt,name=sendReadReceipts,proto3" json:"sendReadReceipts,omitempty"`
	ShowTypingIndicators bool `protobuf:"varint,3,opt,name=showTypingIndicators,proto3" json:"showTypingIndicators,omitempty"`
	IsDefaultSMSApp      bool `protobuf:"varint,4,opt,name=isDefaultSMSApp,proto3" json:"isDefaultSMSApp,omitempty"` // uncertain, but this field seems to disappear when gmessages is un-defaulted
	// contains filtered or unexported fields
}

func (*RCSSettings) Descriptor deprecated

func (*RCSSettings) Descriptor() ([]byte, []int)

Deprecated: Use RCSSettings.ProtoReflect.Descriptor instead.

func (*RCSSettings) GetIsDefaultSMSApp

func (x *RCSSettings) GetIsDefaultSMSApp() bool

func (*RCSSettings) GetIsEnabled

func (x *RCSSettings) GetIsEnabled() bool

func (*RCSSettings) GetSendReadReceipts

func (x *RCSSettings) GetSendReadReceipts() bool

func (*RCSSettings) GetShowTypingIndicators

func (x *RCSSettings) GetShowTypingIndicators() bool

func (*RCSSettings) ProtoMessage

func (*RCSSettings) ProtoMessage()

func (*RCSSettings) ProtoReflect

func (x *RCSSettings) ProtoReflect() protoreflect.Message

func (*RCSSettings) Reset

func (x *RCSSettings) Reset()

func (*RCSSettings) String

func (x *RCSSettings) String() string

type RPCGaiaData

type RPCGaiaData struct {
	Command         int32                         `protobuf:"varint,1,opt,name=command,proto3" json:"command,omitempty"` // 9
	MaybeServerData *RPCGaiaData_UnknownContainer `protobuf:"bytes,108,opt,name=maybeServerData,proto3" json:"maybeServerData,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCGaiaData) Descriptor deprecated

func (*RPCGaiaData) Descriptor() ([]byte, []int)

Deprecated: Use RPCGaiaData.ProtoReflect.Descriptor instead.

func (*RPCGaiaData) GetCommand

func (x *RPCGaiaData) GetCommand() int32

func (*RPCGaiaData) GetMaybeServerData

func (x *RPCGaiaData) GetMaybeServerData() *RPCGaiaData_UnknownContainer

func (*RPCGaiaData) ProtoMessage

func (*RPCGaiaData) ProtoMessage()

func (*RPCGaiaData) ProtoReflect

func (x *RPCGaiaData) ProtoReflect() protoreflect.Message

func (*RPCGaiaData) Reset

func (x *RPCGaiaData) Reset()

func (*RPCGaiaData) String

func (x *RPCGaiaData) String() string

type RPCGaiaData_UnknownContainer

type RPCGaiaData_UnknownContainer struct {
	Item2                        *RPCGaiaData_UnknownContainer_Item2   `protobuf:"bytes,2,opt,name=item2,proto3" json:"item2,omitempty"`
	UnknownTimestampMicroseconds int64                                 `protobuf:"varint,3,opt,name=unknownTimestampMicroseconds,proto3" json:"unknownTimestampMicroseconds,omitempty"` // pairing timestamp?
	Item4                        []*RPCGaiaData_UnknownContainer_Item4 `protobuf:"bytes,4,rep,name=item4,proto3" json:"item4,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCGaiaData_UnknownContainer) Descriptor deprecated

func (*RPCGaiaData_UnknownContainer) Descriptor() ([]byte, []int)

Deprecated: Use RPCGaiaData_UnknownContainer.ProtoReflect.Descriptor instead.

func (*RPCGaiaData_UnknownContainer) GetItem2

func (*RPCGaiaData_UnknownContainer) GetItem4

func (*RPCGaiaData_UnknownContainer) GetUnknownTimestampMicroseconds

func (x *RPCGaiaData_UnknownContainer) GetUnknownTimestampMicroseconds() int64

func (*RPCGaiaData_UnknownContainer) ProtoMessage

func (*RPCGaiaData_UnknownContainer) ProtoMessage()

func (*RPCGaiaData_UnknownContainer) ProtoReflect

func (*RPCGaiaData_UnknownContainer) Reset

func (x *RPCGaiaData_UnknownContainer) Reset()

func (*RPCGaiaData_UnknownContainer) String

type RPCGaiaData_UnknownContainer_Item2

type RPCGaiaData_UnknownContainer_Item2 struct {
	Item1 []*RPCGaiaData_UnknownContainer_Item2_Item1 `protobuf:"bytes,1,rep,name=item1,proto3" json:"item1,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCGaiaData_UnknownContainer_Item2) Descriptor deprecated

func (*RPCGaiaData_UnknownContainer_Item2) Descriptor() ([]byte, []int)

Deprecated: Use RPCGaiaData_UnknownContainer_Item2.ProtoReflect.Descriptor instead.

func (*RPCGaiaData_UnknownContainer_Item2) GetItem1

func (*RPCGaiaData_UnknownContainer_Item2) ProtoMessage

func (*RPCGaiaData_UnknownContainer_Item2) ProtoMessage()

func (*RPCGaiaData_UnknownContainer_Item2) ProtoReflect

func (*RPCGaiaData_UnknownContainer_Item2) Reset

func (*RPCGaiaData_UnknownContainer_Item2) String

type RPCGaiaData_UnknownContainer_Item2_Item1

type RPCGaiaData_UnknownContainer_Item2_Item1 struct {
	DestOrSourceUUID string `protobuf:"bytes,1,opt,name=destOrSourceUUID,proto3" json:"destOrSourceUUID,omitempty"`
	UnknownInt4      int32  `protobuf:"varint,4,opt,name=unknownInt4,proto3" json:"unknownInt4,omitempty"` // 1 for destination device, 6 for local device?
	LanguageCode     string `protobuf:"bytes,5,opt,name=languageCode,proto3" json:"languageCode,omitempty"`
	UnknownBigInt7   uint64 `protobuf:"varint,7,opt,name=unknownBigInt7,proto3" json:"unknownBigInt7,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCGaiaData_UnknownContainer_Item2_Item1) Descriptor deprecated

func (*RPCGaiaData_UnknownContainer_Item2_Item1) Descriptor() ([]byte, []int)

Deprecated: Use RPCGaiaData_UnknownContainer_Item2_Item1.ProtoReflect.Descriptor instead.

func (*RPCGaiaData_UnknownContainer_Item2_Item1) GetDestOrSourceUUID

func (x *RPCGaiaData_UnknownContainer_Item2_Item1) GetDestOrSourceUUID() string

func (*RPCGaiaData_UnknownContainer_Item2_Item1) GetLanguageCode

func (x *RPCGaiaData_UnknownContainer_Item2_Item1) GetLanguageCode() string

func (*RPCGaiaData_UnknownContainer_Item2_Item1) GetUnknownBigInt7

func (x *RPCGaiaData_UnknownContainer_Item2_Item1) GetUnknownBigInt7() uint64

func (*RPCGaiaData_UnknownContainer_Item2_Item1) GetUnknownInt4

func (x *RPCGaiaData_UnknownContainer_Item2_Item1) GetUnknownInt4() int32

func (*RPCGaiaData_UnknownContainer_Item2_Item1) ProtoMessage

func (*RPCGaiaData_UnknownContainer_Item2_Item1) ProtoReflect

func (*RPCGaiaData_UnknownContainer_Item2_Item1) Reset

func (*RPCGaiaData_UnknownContainer_Item2_Item1) String

type RPCGaiaData_UnknownContainer_Item4

type RPCGaiaData_UnknownContainer_Item4 struct {
	DestOrSourceUUID             string                                    `protobuf:"bytes,1,opt,name=destOrSourceUUID,proto3" json:"destOrSourceUUID,omitempty"`
	UnknownInt3                  int32                                     `protobuf:"varint,3,opt,name=unknownInt3,proto3" json:"unknownInt3,omitempty"`                                   // 1 for destination device, 6 for local device?
	UnknownInt4                  int32                                     `protobuf:"varint,4,opt,name=unknownInt4,proto3" json:"unknownInt4,omitempty"`                                   // always 6?
	UnknownTimestampMicroseconds int64                                     `protobuf:"varint,7,opt,name=unknownTimestampMicroseconds,proto3" json:"unknownTimestampMicroseconds,omitempty"` // maybe device creation ts?
	Item8                        *RPCGaiaData_UnknownContainer_Item4_Item8 `protobuf:"bytes,8,opt,name=item8,proto3" json:"item8,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCGaiaData_UnknownContainer_Item4) Descriptor deprecated

func (*RPCGaiaData_UnknownContainer_Item4) Descriptor() ([]byte, []int)

Deprecated: Use RPCGaiaData_UnknownContainer_Item4.ProtoReflect.Descriptor instead.

func (*RPCGaiaData_UnknownContainer_Item4) GetDestOrSourceUUID

func (x *RPCGaiaData_UnknownContainer_Item4) GetDestOrSourceUUID() string

func (*RPCGaiaData_UnknownContainer_Item4) GetItem8

func (*RPCGaiaData_UnknownContainer_Item4) GetUnknownInt3

func (x *RPCGaiaData_UnknownContainer_Item4) GetUnknownInt3() int32

func (*RPCGaiaData_UnknownContainer_Item4) GetUnknownInt4

func (x *RPCGaiaData_UnknownContainer_Item4) GetUnknownInt4() int32

func (*RPCGaiaData_UnknownContainer_Item4) GetUnknownTimestampMicroseconds

func (x *RPCGaiaData_UnknownContainer_Item4) GetUnknownTimestampMicroseconds() int64

func (*RPCGaiaData_UnknownContainer_Item4) ProtoMessage

func (*RPCGaiaData_UnknownContainer_Item4) ProtoMessage()

func (*RPCGaiaData_UnknownContainer_Item4) ProtoReflect

func (*RPCGaiaData_UnknownContainer_Item4) Reset

func (*RPCGaiaData_UnknownContainer_Item4) String

type RPCGaiaData_UnknownContainer_Item4_Item8

type RPCGaiaData_UnknownContainer_Item4_Item8 struct {
	UnknownInt1      int32  `protobuf:"varint,1,opt,name=unknownInt1,proto3" json:"unknownInt1,omitempty"`           // present for destination device?
	UnknownTimestamp int32  `protobuf:"varint,2,opt,name=unknownTimestamp,proto3" json:"unknownTimestamp,omitempty"` // present for destination device?
	UnknownBytes     []byte `protobuf:"bytes,3,opt,name=unknownBytes,proto3" json:"unknownBytes,omitempty"`          // present for local device?
	// contains filtered or unexported fields
}

func (*RPCGaiaData_UnknownContainer_Item4_Item8) Descriptor deprecated

func (*RPCGaiaData_UnknownContainer_Item4_Item8) Descriptor() ([]byte, []int)

Deprecated: Use RPCGaiaData_UnknownContainer_Item4_Item8.ProtoReflect.Descriptor instead.

func (*RPCGaiaData_UnknownContainer_Item4_Item8) GetUnknownBytes

func (x *RPCGaiaData_UnknownContainer_Item4_Item8) GetUnknownBytes() []byte

func (*RPCGaiaData_UnknownContainer_Item4_Item8) GetUnknownInt1

func (x *RPCGaiaData_UnknownContainer_Item4_Item8) GetUnknownInt1() int32

func (*RPCGaiaData_UnknownContainer_Item4_Item8) GetUnknownTimestamp

func (x *RPCGaiaData_UnknownContainer_Item4_Item8) GetUnknownTimestamp() int32

func (*RPCGaiaData_UnknownContainer_Item4_Item8) ProtoMessage

func (*RPCGaiaData_UnknownContainer_Item4_Item8) ProtoReflect

func (*RPCGaiaData_UnknownContainer_Item4_Item8) Reset

func (*RPCGaiaData_UnknownContainer_Item4_Item8) String

type RPCMessageData

type RPCMessageData struct {
	SessionID       string     `protobuf:"bytes,1,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	Timestamp       int64      `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Action          ActionType `protobuf:"varint,4,opt,name=action,proto3,enum=rpc.ActionType" json:"action,omitempty"`
	UnencryptedData []byte     `protobuf:"bytes,5,opt,name=unencryptedData,proto3" json:"unencryptedData,omitempty"`
	Bool1           bool       `protobuf:"varint,6,opt,name=bool1,proto3" json:"bool1,omitempty"`
	Bool2           bool       `protobuf:"varint,7,opt,name=bool2,proto3" json:"bool2,omitempty"`
	EncryptedData   []byte     `protobuf:"bytes,8,opt,name=encryptedData,proto3" json:"encryptedData,omitempty"`
	Bool3           bool       `protobuf:"varint,9,opt,name=bool3,proto3" json:"bool3,omitempty"`
	EncryptedData2  []byte     `protobuf:"bytes,11,opt,name=encryptedData2,proto3" json:"encryptedData2,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCMessageData) Descriptor deprecated

func (*RPCMessageData) Descriptor() ([]byte, []int)

Deprecated: Use RPCMessageData.ProtoReflect.Descriptor instead.

func (*RPCMessageData) GetAction

func (x *RPCMessageData) GetAction() ActionType

func (*RPCMessageData) GetBool1

func (x *RPCMessageData) GetBool1() bool

func (*RPCMessageData) GetBool2

func (x *RPCMessageData) GetBool2() bool

func (*RPCMessageData) GetBool3

func (x *RPCMessageData) GetBool3() bool

func (*RPCMessageData) GetEncryptedData

func (x *RPCMessageData) GetEncryptedData() []byte

func (*RPCMessageData) GetEncryptedData2

func (x *RPCMessageData) GetEncryptedData2() []byte

func (*RPCMessageData) GetSessionID

func (x *RPCMessageData) GetSessionID() string

func (*RPCMessageData) GetTimestamp

func (x *RPCMessageData) GetTimestamp() int64

func (*RPCMessageData) GetUnencryptedData

func (x *RPCMessageData) GetUnencryptedData() []byte

func (*RPCMessageData) ProtoMessage

func (*RPCMessageData) ProtoMessage()

func (*RPCMessageData) ProtoReflect

func (x *RPCMessageData) ProtoReflect() protoreflect.Message

func (*RPCMessageData) Reset

func (x *RPCMessageData) Reset()

func (*RPCMessageData) String

func (x *RPCMessageData) String() string

type RPCPairData

type RPCPairData struct {

	// Types that are assignable to Event:
	//
	//	*RPCPairData_Paired
	//	*RPCPairData_Revoked
	Event isRPCPairData_Event `protobuf_oneof:"event"`
	// contains filtered or unexported fields
}

func (*RPCPairData) Descriptor deprecated

func (*RPCPairData) Descriptor() ([]byte, []int)

Deprecated: Use RPCPairData.ProtoReflect.Descriptor instead.

func (*RPCPairData) GetEvent

func (m *RPCPairData) GetEvent() isRPCPairData_Event

func (*RPCPairData) GetPaired

func (x *RPCPairData) GetPaired() *PairedData

func (*RPCPairData) GetRevoked

func (x *RPCPairData) GetRevoked() *RevokePairData

func (*RPCPairData) ProtoMessage

func (*RPCPairData) ProtoMessage()

func (*RPCPairData) ProtoReflect

func (x *RPCPairData) ProtoReflect() protoreflect.Message

func (*RPCPairData) Reset

func (x *RPCPairData) Reset()

func (*RPCPairData) String

func (x *RPCPairData) String() string

type RPCPairData_Paired

type RPCPairData_Paired struct {
	Paired *PairedData `protobuf:"bytes,4,opt,name=paired,proto3,oneof"`
}

type RPCPairData_Revoked

type RPCPairData_Revoked struct {
	Revoked *RevokePairData `protobuf:"bytes,5,opt,name=revoked,proto3,oneof"`
}

type ReactionData

type ReactionData struct {
	Unicode     string           `protobuf:"bytes,1,opt,name=unicode,proto3" json:"unicode,omitempty"`
	Type        EmojiType        `protobuf:"varint,2,opt,name=type,proto3,enum=conversations.EmojiType" json:"type,omitempty"`
	CustomEmoji *CustomEmojiData `protobuf:"bytes,101,opt,name=customEmoji,proto3" json:"customEmoji,omitempty"`
	// contains filtered or unexported fields
}

func MakeReactionData

func MakeReactionData(emoji string) *ReactionData

func (*ReactionData) Descriptor deprecated

func (*ReactionData) Descriptor() ([]byte, []int)

Deprecated: Use ReactionData.ProtoReflect.Descriptor instead.

func (*ReactionData) GetCustomEmoji

func (x *ReactionData) GetCustomEmoji() *CustomEmojiData

func (*ReactionData) GetType

func (x *ReactionData) GetType() EmojiType

func (*ReactionData) GetUnicode

func (x *ReactionData) GetUnicode() string

func (*ReactionData) ProtoMessage

func (*ReactionData) ProtoMessage()

func (*ReactionData) ProtoReflect

func (x *ReactionData) ProtoReflect() protoreflect.Message

func (*ReactionData) Reset

func (x *ReactionData) Reset()

func (*ReactionData) String

func (x *ReactionData) String() string

type ReactionEntry

type ReactionEntry struct {
	Data           *ReactionData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	ParticipantIDs []string      `protobuf:"bytes,2,rep,name=participantIDs,proto3" json:"participantIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*ReactionEntry) Descriptor deprecated

func (*ReactionEntry) Descriptor() ([]byte, []int)

Deprecated: Use ReactionEntry.ProtoReflect.Descriptor instead.

func (*ReactionEntry) GetData

func (x *ReactionEntry) GetData() *ReactionData

func (*ReactionEntry) GetParticipantIDs

func (x *ReactionEntry) GetParticipantIDs() []string

func (*ReactionEntry) ProtoMessage

func (*ReactionEntry) ProtoMessage()

func (*ReactionEntry) ProtoReflect

func (x *ReactionEntry) ProtoReflect() protoreflect.Message

func (*ReactionEntry) Reset

func (x *ReactionEntry) Reset()

func (*ReactionEntry) String

func (x *ReactionEntry) String() string

type ReceiveMessagesRequest

type ReceiveMessagesRequest struct {
	Auth    *AuthMessage                                `protobuf:"bytes,1,opt,name=auth,proto3" json:"auth,omitempty"`
	Unknown *ReceiveMessagesRequest_UnknownEmptyObject2 `protobuf:"bytes,4,opt,name=unknown,proto3,oneof" json:"unknown,omitempty"`
	// contains filtered or unexported fields
}

func (*ReceiveMessagesRequest) Descriptor deprecated

func (*ReceiveMessagesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ReceiveMessagesRequest.ProtoReflect.Descriptor instead.

func (*ReceiveMessagesRequest) GetAuth

func (x *ReceiveMessagesRequest) GetAuth() *AuthMessage

func (*ReceiveMessagesRequest) GetUnknown

func (*ReceiveMessagesRequest) ProtoMessage

func (*ReceiveMessagesRequest) ProtoMessage()

func (*ReceiveMessagesRequest) ProtoReflect

func (x *ReceiveMessagesRequest) ProtoReflect() protoreflect.Message

func (*ReceiveMessagesRequest) Reset

func (x *ReceiveMessagesRequest) Reset()

func (*ReceiveMessagesRequest) String

func (x *ReceiveMessagesRequest) String() string

type ReceiveMessagesRequest_UnknownEmptyObject1

type ReceiveMessagesRequest_UnknownEmptyObject1 struct {
	// contains filtered or unexported fields
}

func (*ReceiveMessagesRequest_UnknownEmptyObject1) Descriptor deprecated

Deprecated: Use ReceiveMessagesRequest_UnknownEmptyObject1.ProtoReflect.Descriptor instead.

func (*ReceiveMessagesRequest_UnknownEmptyObject1) ProtoMessage

func (*ReceiveMessagesRequest_UnknownEmptyObject1) ProtoReflect

func (*ReceiveMessagesRequest_UnknownEmptyObject1) Reset

func (*ReceiveMessagesRequest_UnknownEmptyObject1) String

type ReceiveMessagesRequest_UnknownEmptyObject2

type ReceiveMessagesRequest_UnknownEmptyObject2 struct {
	Unknown *ReceiveMessagesRequest_UnknownEmptyObject1 `protobuf:"bytes,2,opt,name=unknown,proto3" json:"unknown,omitempty"`
	// contains filtered or unexported fields
}

func (*ReceiveMessagesRequest_UnknownEmptyObject2) Descriptor deprecated

Deprecated: Use ReceiveMessagesRequest_UnknownEmptyObject2.ProtoReflect.Descriptor instead.

func (*ReceiveMessagesRequest_UnknownEmptyObject2) GetUnknown

func (*ReceiveMessagesRequest_UnknownEmptyObject2) ProtoMessage

func (*ReceiveMessagesRequest_UnknownEmptyObject2) ProtoReflect

func (*ReceiveMessagesRequest_UnknownEmptyObject2) Reset

func (*ReceiveMessagesRequest_UnknownEmptyObject2) String

type RefreshPhoneRelayResponse

type RefreshPhoneRelayResponse struct {
	Coordinates *CoordinateMessage `protobuf:"bytes,1,opt,name=coordinates,proto3" json:"coordinates,omitempty"`
	PairKey     []byte             `protobuf:"bytes,2,opt,name=pairKey,proto3" json:"pairKey,omitempty"`
	ValidFor    int64              `protobuf:"varint,3,opt,name=validFor,proto3" json:"validFor,omitempty"`
	// contains filtered or unexported fields
}

func (*RefreshPhoneRelayResponse) Descriptor deprecated

func (*RefreshPhoneRelayResponse) Descriptor() ([]byte, []int)

Deprecated: Use RefreshPhoneRelayResponse.ProtoReflect.Descriptor instead.

func (*RefreshPhoneRelayResponse) GetCoordinates

func (x *RefreshPhoneRelayResponse) GetCoordinates() *CoordinateMessage

func (*RefreshPhoneRelayResponse) GetPairKey

func (x *RefreshPhoneRelayResponse) GetPairKey() []byte

func (*RefreshPhoneRelayResponse) GetValidFor

func (x *RefreshPhoneRelayResponse) GetValidFor() int64

func (*RefreshPhoneRelayResponse) ProtoMessage

func (*RefreshPhoneRelayResponse) ProtoMessage()

func (*RefreshPhoneRelayResponse) ProtoReflect

func (*RefreshPhoneRelayResponse) Reset

func (x *RefreshPhoneRelayResponse) Reset()

func (*RefreshPhoneRelayResponse) String

func (x *RefreshPhoneRelayResponse) String() string

type RegisterPhoneRelayResponse

type RegisterPhoneRelayResponse struct {
	Coordinates *CoordinateMessage `protobuf:"bytes,1,opt,name=coordinates,proto3" json:"coordinates,omitempty"`
	Browser     *Device            `protobuf:"bytes,2,opt,name=browser,proto3" json:"browser,omitempty"`
	PairingKey  []byte             `protobuf:"bytes,3,opt,name=pairingKey,proto3" json:"pairingKey,omitempty"`
	ValidFor    int64              `protobuf:"varint,4,opt,name=validFor,proto3" json:"validFor,omitempty"`
	AuthKeyData *TokenData         `protobuf:"bytes,5,opt,name=authKeyData,proto3" json:"authKeyData,omitempty"`
	ResponseID  string             `protobuf:"bytes,6,opt,name=responseID,proto3" json:"responseID,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterPhoneRelayResponse) Descriptor deprecated

func (*RegisterPhoneRelayResponse) Descriptor() ([]byte, []int)

Deprecated: Use RegisterPhoneRelayResponse.ProtoReflect.Descriptor instead.

func (*RegisterPhoneRelayResponse) GetAuthKeyData

func (x *RegisterPhoneRelayResponse) GetAuthKeyData() *TokenData

func (*RegisterPhoneRelayResponse) GetBrowser

func (x *RegisterPhoneRelayResponse) GetBrowser() *Device

func (*RegisterPhoneRelayResponse) GetCoordinates

func (x *RegisterPhoneRelayResponse) GetCoordinates() *CoordinateMessage

func (*RegisterPhoneRelayResponse) GetPairingKey

func (x *RegisterPhoneRelayResponse) GetPairingKey() []byte

func (*RegisterPhoneRelayResponse) GetResponseID

func (x *RegisterPhoneRelayResponse) GetResponseID() string

func (*RegisterPhoneRelayResponse) GetValidFor

func (x *RegisterPhoneRelayResponse) GetValidFor() int64

func (*RegisterPhoneRelayResponse) ProtoMessage

func (*RegisterPhoneRelayResponse) ProtoMessage()

func (*RegisterPhoneRelayResponse) ProtoReflect

func (*RegisterPhoneRelayResponse) Reset

func (x *RegisterPhoneRelayResponse) Reset()

func (*RegisterPhoneRelayResponse) String

func (x *RegisterPhoneRelayResponse) String() string

type RegisterRefreshRequest

type RegisterRefreshRequest struct {
	MessageAuth       *AuthMessage                           `protobuf:"bytes,1,opt,name=messageAuth,proto3" json:"messageAuth,omitempty"`
	CurrBrowserDevice *Device                                `protobuf:"bytes,2,opt,name=currBrowserDevice,proto3" json:"currBrowserDevice,omitempty"`
	UnixTimestamp     int64                                  `protobuf:"varint,3,opt,name=unixTimestamp,proto3" json:"unixTimestamp,omitempty"`
	Signature         []byte                                 `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	EmptyRefreshArr   *RegisterRefreshRequest_NestedEmptyArr `protobuf:"bytes,13,opt,name=emptyRefreshArr,proto3" json:"emptyRefreshArr,omitempty"`
	MessageType       int32                                  `protobuf:"varint,16,opt,name=messageType,proto3" json:"messageType,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRefreshRequest) Descriptor deprecated

func (*RegisterRefreshRequest) Descriptor() ([]byte, []int)

Deprecated: Use RegisterRefreshRequest.ProtoReflect.Descriptor instead.

func (*RegisterRefreshRequest) GetCurrBrowserDevice

func (x *RegisterRefreshRequest) GetCurrBrowserDevice() *Device

func (*RegisterRefreshRequest) GetEmptyRefreshArr

func (*RegisterRefreshRequest) GetMessageAuth

func (x *RegisterRefreshRequest) GetMessageAuth() *AuthMessage

func (*RegisterRefreshRequest) GetMessageType

func (x *RegisterRefreshRequest) GetMessageType() int32

func (*RegisterRefreshRequest) GetSignature

func (x *RegisterRefreshRequest) GetSignature() []byte

func (*RegisterRefreshRequest) GetUnixTimestamp

func (x *RegisterRefreshRequest) GetUnixTimestamp() int64

func (*RegisterRefreshRequest) ProtoMessage

func (*RegisterRefreshRequest) ProtoMessage()

func (*RegisterRefreshRequest) ProtoReflect

func (x *RegisterRefreshRequest) ProtoReflect() protoreflect.Message

func (*RegisterRefreshRequest) Reset

func (x *RegisterRefreshRequest) Reset()

func (*RegisterRefreshRequest) String

func (x *RegisterRefreshRequest) String() string

type RegisterRefreshRequest_NestedEmptyArr

type RegisterRefreshRequest_NestedEmptyArr struct {
	EmptyArr *EmptyArr `protobuf:"bytes,9,opt,name=emptyArr,proto3" json:"emptyArr,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRefreshRequest_NestedEmptyArr) Descriptor deprecated

func (*RegisterRefreshRequest_NestedEmptyArr) Descriptor() ([]byte, []int)

Deprecated: Use RegisterRefreshRequest_NestedEmptyArr.ProtoReflect.Descriptor instead.

func (*RegisterRefreshRequest_NestedEmptyArr) GetEmptyArr

func (*RegisterRefreshRequest_NestedEmptyArr) ProtoMessage

func (*RegisterRefreshRequest_NestedEmptyArr) ProtoMessage()

func (*RegisterRefreshRequest_NestedEmptyArr) ProtoReflect

func (*RegisterRefreshRequest_NestedEmptyArr) Reset

func (*RegisterRefreshRequest_NestedEmptyArr) String

type RegisterRefreshResponse

type RegisterRefreshResponse struct {
	TokenData *TokenData `protobuf:"bytes,2,opt,name=tokenData,proto3" json:"tokenData,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRefreshResponse) Descriptor deprecated

func (*RegisterRefreshResponse) Descriptor() ([]byte, []int)

Deprecated: Use RegisterRefreshResponse.ProtoReflect.Descriptor instead.

func (*RegisterRefreshResponse) GetTokenData

func (x *RegisterRefreshResponse) GetTokenData() *TokenData

func (*RegisterRefreshResponse) ProtoMessage

func (*RegisterRefreshResponse) ProtoMessage()

func (*RegisterRefreshResponse) ProtoReflect

func (x *RegisterRefreshResponse) ProtoReflect() protoreflect.Message

func (*RegisterRefreshResponse) Reset

func (x *RegisterRefreshResponse) Reset()

func (*RegisterRefreshResponse) String

func (x *RegisterRefreshResponse) String() string

type ReplyMessage

type ReplyMessage struct {
	MessageID        string            `protobuf:"bytes,1,opt,name=messageID,proto3" json:"messageID,omitempty"`
	ConversationID   string            `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"` // might be participantID
	ReplyMessageData *ReplyMessageData `protobuf:"bytes,3,opt,name=replyMessageData,proto3" json:"replyMessageData,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplyMessage) Descriptor deprecated

func (*ReplyMessage) Descriptor() ([]byte, []int)

Deprecated: Use ReplyMessage.ProtoReflect.Descriptor instead.

func (*ReplyMessage) GetConversationID

func (x *ReplyMessage) GetConversationID() string

func (*ReplyMessage) GetMessageID

func (x *ReplyMessage) GetMessageID() string

func (*ReplyMessage) GetReplyMessageData

func (x *ReplyMessage) GetReplyMessageData() *ReplyMessageData

func (*ReplyMessage) ProtoMessage

func (*ReplyMessage) ProtoMessage()

func (*ReplyMessage) ProtoReflect

func (x *ReplyMessage) ProtoReflect() protoreflect.Message

func (*ReplyMessage) Reset

func (x *ReplyMessage) Reset()

func (*ReplyMessage) String

func (x *ReplyMessage) String() string

type ReplyMessageData

type ReplyMessageData struct {
	// contains filtered or unexported fields
}

func (*ReplyMessageData) Descriptor deprecated

func (*ReplyMessageData) Descriptor() ([]byte, []int)

Deprecated: Use ReplyMessageData.ProtoReflect.Descriptor instead.

func (*ReplyMessageData) ProtoMessage

func (*ReplyMessageData) ProtoMessage()

func (*ReplyMessageData) ProtoReflect

func (x *ReplyMessageData) ProtoReflect() protoreflect.Message

func (*ReplyMessageData) Reset

func (x *ReplyMessageData) Reset()

func (*ReplyMessageData) String

func (x *ReplyMessageData) String() string

type ReplyPayload

type ReplyPayload struct {
	MessageID string `protobuf:"bytes,1,opt,name=messageID,proto3" json:"messageID,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplyPayload) Descriptor deprecated

func (*ReplyPayload) Descriptor() ([]byte, []int)

Deprecated: Use ReplyPayload.ProtoReflect.Descriptor instead.

func (*ReplyPayload) GetMessageID

func (x *ReplyPayload) GetMessageID() string

func (*ReplyPayload) ProtoMessage

func (*ReplyPayload) ProtoMessage()

func (*ReplyPayload) ProtoReflect

func (x *ReplyPayload) ProtoReflect() protoreflect.Message

func (*ReplyPayload) Reset

func (x *ReplyPayload) Reset()

func (*ReplyPayload) String

func (x *ReplyPayload) String() string

type ResendMessageRequest

type ResendMessageRequest struct {
	MessageID string `protobuf:"bytes,2,opt,name=messageID,proto3" json:"messageID,omitempty"`
	// contains filtered or unexported fields
}

func (*ResendMessageRequest) Descriptor deprecated

func (*ResendMessageRequest) Descriptor() ([]byte, []int)

Deprecated: Use ResendMessageRequest.ProtoReflect.Descriptor instead.

func (*ResendMessageRequest) GetMessageID

func (x *ResendMessageRequest) GetMessageID() string

func (*ResendMessageRequest) ProtoMessage

func (*ResendMessageRequest) ProtoMessage()

func (*ResendMessageRequest) ProtoReflect

func (x *ResendMessageRequest) ProtoReflect() protoreflect.Message

func (*ResendMessageRequest) Reset

func (x *ResendMessageRequest) Reset()

func (*ResendMessageRequest) String

func (x *ResendMessageRequest) String() string

type RevokeGaiaPairingRequest

type RevokeGaiaPairingRequest struct {
	PairingAttemptID string `protobuf:"bytes,1,opt,name=pairingAttemptID,proto3" json:"pairingAttemptID,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeGaiaPairingRequest) Descriptor deprecated

func (*RevokeGaiaPairingRequest) Descriptor() ([]byte, []int)

Deprecated: Use RevokeGaiaPairingRequest.ProtoReflect.Descriptor instead.

func (*RevokeGaiaPairingRequest) GetPairingAttemptID

func (x *RevokeGaiaPairingRequest) GetPairingAttemptID() string

func (*RevokeGaiaPairingRequest) ProtoMessage

func (*RevokeGaiaPairingRequest) ProtoMessage()

func (*RevokeGaiaPairingRequest) ProtoReflect

func (x *RevokeGaiaPairingRequest) ProtoReflect() protoreflect.Message

func (*RevokeGaiaPairingRequest) Reset

func (x *RevokeGaiaPairingRequest) Reset()

func (*RevokeGaiaPairingRequest) String

func (x *RevokeGaiaPairingRequest) String() string

type RevokePairData

type RevokePairData struct {
	RevokedDevice *Device `protobuf:"bytes,1,opt,name=revokedDevice,proto3" json:"revokedDevice,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokePairData) Descriptor deprecated

func (*RevokePairData) Descriptor() ([]byte, []int)

Deprecated: Use RevokePairData.ProtoReflect.Descriptor instead.

func (*RevokePairData) GetRevokedDevice

func (x *RevokePairData) GetRevokedDevice() *Device

func (*RevokePairData) ProtoMessage

func (*RevokePairData) ProtoMessage()

func (*RevokePairData) ProtoReflect

func (x *RevokePairData) ProtoReflect() protoreflect.Message

func (*RevokePairData) Reset

func (x *RevokePairData) Reset()

func (*RevokePairData) String

func (x *RevokePairData) String() string

type RevokeRelayPairingRequest

type RevokeRelayPairingRequest struct {
	AuthMessage *AuthMessage `protobuf:"bytes,1,opt,name=authMessage,proto3" json:"authMessage,omitempty"`
	Browser     *Device      `protobuf:"bytes,2,opt,name=browser,proto3" json:"browser,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeRelayPairingRequest) Descriptor deprecated

func (*RevokeRelayPairingRequest) Descriptor() ([]byte, []int)

Deprecated: Use RevokeRelayPairingRequest.ProtoReflect.Descriptor instead.

func (*RevokeRelayPairingRequest) GetAuthMessage

func (x *RevokeRelayPairingRequest) GetAuthMessage() *AuthMessage

func (*RevokeRelayPairingRequest) GetBrowser

func (x *RevokeRelayPairingRequest) GetBrowser() *Device

func (*RevokeRelayPairingRequest) ProtoMessage

func (*RevokeRelayPairingRequest) ProtoMessage()

func (*RevokeRelayPairingRequest) ProtoReflect

func (*RevokeRelayPairingRequest) Reset

func (x *RevokeRelayPairingRequest) Reset()

func (*RevokeRelayPairingRequest) String

func (x *RevokeRelayPairingRequest) String() string

type RevokeRelayPairingResponse

type RevokeRelayPairingResponse struct {
	// contains filtered or unexported fields
}

func (*RevokeRelayPairingResponse) Descriptor deprecated

func (*RevokeRelayPairingResponse) Descriptor() ([]byte, []int)

Deprecated: Use RevokeRelayPairingResponse.ProtoReflect.Descriptor instead.

func (*RevokeRelayPairingResponse) ProtoMessage

func (*RevokeRelayPairingResponse) ProtoMessage()

func (*RevokeRelayPairingResponse) ProtoReflect

func (*RevokeRelayPairingResponse) Reset

func (x *RevokeRelayPairingResponse) Reset()

func (*RevokeRelayPairingResponse) String

func (x *RevokeRelayPairingResponse) String() string

type SIMCard

type SIMCard struct {
	RCSChats       *RCSChats       `protobuf:"bytes,3,opt,name=RCSChats,proto3,oneof" json:"RCSChats,omitempty"`
	SIMData        *SIMData        `protobuf:"bytes,5,opt,name=SIMData,proto3" json:"SIMData,omitempty"`
	Bool1          bool            `protobuf:"varint,6,opt,name=bool1,proto3" json:"bool1,omitempty"`
	SIMParticipant *SIMParticipant `protobuf:"bytes,7,opt,name=SIMParticipant,proto3" json:"SIMParticipant,omitempty"`
	// contains filtered or unexported fields
}

func (*SIMCard) Descriptor deprecated

func (*SIMCard) Descriptor() ([]byte, []int)

Deprecated: Use SIMCard.ProtoReflect.Descriptor instead.

func (*SIMCard) GetBool1

func (x *SIMCard) GetBool1() bool

func (*SIMCard) GetRCSChats

func (x *SIMCard) GetRCSChats() *RCSChats

func (*SIMCard) GetSIMData

func (x *SIMCard) GetSIMData() *SIMData

func (*SIMCard) GetSIMParticipant

func (x *SIMCard) GetSIMParticipant() *SIMParticipant

func (*SIMCard) ProtoMessage

func (*SIMCard) ProtoMessage()

func (*SIMCard) ProtoReflect

func (x *SIMCard) ProtoReflect() protoreflect.Message

func (*SIMCard) Reset

func (x *SIMCard) Reset()

func (*SIMCard) String

func (x *SIMCard) String() string

type SIMData

type SIMData struct {
	SIMPayload           *SIMPayload `protobuf:"bytes,1,opt,name=SIMPayload,proto3" json:"SIMPayload,omitempty"`
	Bool1                bool        `protobuf:"varint,2,opt,name=bool1,proto3" json:"bool1,omitempty"` // maybe isDefault?
	CarrierName          string      `protobuf:"bytes,3,opt,name=carrierName,proto3" json:"carrierName,omitempty"`
	ColorHex             string      `protobuf:"bytes,4,opt,name=colorHex,proto3" json:"colorHex,omitempty"`
	Int1                 int64       `protobuf:"varint,5,opt,name=int1,proto3" json:"int1,omitempty"`
	FormattedPhoneNumber string      `protobuf:"bytes,6,opt,name=formattedPhoneNumber,proto3" json:"formattedPhoneNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*SIMData) Descriptor deprecated

func (*SIMData) Descriptor() ([]byte, []int)

Deprecated: Use SIMData.ProtoReflect.Descriptor instead.

func (*SIMData) GetBool1

func (x *SIMData) GetBool1() bool

func (*SIMData) GetCarrierName

func (x *SIMData) GetCarrierName() string

func (*SIMData) GetColorHex added in v0.5.1

func (x *SIMData) GetColorHex() string

func (*SIMData) GetFormattedPhoneNumber added in v0.5.1

func (x *SIMData) GetFormattedPhoneNumber() string

func (*SIMData) GetInt1

func (x *SIMData) GetInt1() int64

func (*SIMData) GetSIMPayload

func (x *SIMData) GetSIMPayload() *SIMPayload

func (*SIMData) ProtoMessage

func (*SIMData) ProtoMessage()

func (*SIMData) ProtoReflect

func (x *SIMData) ProtoReflect() protoreflect.Message

func (*SIMData) Reset

func (x *SIMData) Reset()

func (*SIMData) String

func (x *SIMData) String() string

type SIMParticipant

type SIMParticipant struct {
	ID string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*SIMParticipant) Descriptor deprecated

func (*SIMParticipant) Descriptor() ([]byte, []int)

Deprecated: Use SIMParticipant.ProtoReflect.Descriptor instead.

func (*SIMParticipant) GetID

func (x *SIMParticipant) GetID() string

func (*SIMParticipant) ProtoMessage

func (*SIMParticipant) ProtoMessage()

func (*SIMParticipant) ProtoReflect

func (x *SIMParticipant) ProtoReflect() protoreflect.Message

func (*SIMParticipant) Reset

func (x *SIMParticipant) Reset()

func (*SIMParticipant) String

func (x *SIMParticipant) String() string

type SIMPayload

type SIMPayload struct {
	Two       int32 `protobuf:"varint,1,opt,name=two,proto3" json:"two,omitempty"`
	SIMNumber int32 `protobuf:"varint,2,opt,name=SIMNumber,proto3" json:"SIMNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*SIMPayload) Descriptor deprecated

func (*SIMPayload) Descriptor() ([]byte, []int)

Deprecated: Use SIMPayload.ProtoReflect.Descriptor instead.

func (*SIMPayload) GetSIMNumber

func (x *SIMPayload) GetSIMNumber() int32

func (*SIMPayload) GetTwo

func (x *SIMPayload) GetTwo() int32

func (*SIMPayload) ProtoMessage

func (*SIMPayload) ProtoMessage()

func (*SIMPayload) ProtoReflect

func (x *SIMPayload) ProtoReflect() protoreflect.Message

func (*SIMPayload) Reset

func (x *SIMPayload) Reset()

func (*SIMPayload) String

func (x *SIMPayload) String() string

type SendMessageRequest

type SendMessageRequest struct {
	ConversationID string          `protobuf:"bytes,2,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	MessagePayload *MessagePayload `protobuf:"bytes,3,opt,name=messagePayload,proto3" json:"messagePayload,omitempty"`
	SIMPayload     *SIMPayload     `protobuf:"bytes,4,opt,name=SIMPayload,proto3" json:"SIMPayload,omitempty"`
	TmpID          string          `protobuf:"bytes,5,opt,name=tmpID,proto3" json:"tmpID,omitempty"`
	ForceRCS       bool            `protobuf:"varint,6,opt,name=forceRCS,proto3" json:"forceRCS,omitempty"`
	Reply          *ReplyPayload   `protobuf:"bytes,8,opt,name=reply,proto3" json:"reply,omitempty"`
	// contains filtered or unexported fields
}

func (*SendMessageRequest) Descriptor deprecated

func (*SendMessageRequest) Descriptor() ([]byte, []int)

Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.

func (*SendMessageRequest) GetConversationID

func (x *SendMessageRequest) GetConversationID() string

func (*SendMessageRequest) GetForceRCS

func (x *SendMessageRequest) GetForceRCS() bool

func (*SendMessageRequest) GetMessagePayload

func (x *SendMessageRequest) GetMessagePayload() *MessagePayload

func (*SendMessageRequest) GetReply

func (x *SendMessageRequest) GetReply() *ReplyPayload

func (*SendMessageRequest) GetSIMPayload

func (x *SendMessageRequest) GetSIMPayload() *SIMPayload

func (*SendMessageRequest) GetTmpID

func (x *SendMessageRequest) GetTmpID() string

func (*SendMessageRequest) ProtoMessage

func (*SendMessageRequest) ProtoMessage()

func (*SendMessageRequest) ProtoReflect

func (x *SendMessageRequest) ProtoReflect() protoreflect.Message

func (*SendMessageRequest) Reset

func (x *SendMessageRequest) Reset()

func (*SendMessageRequest) String

func (x *SendMessageRequest) String() string

type SendMessageResponse

type SendMessageResponse struct {
	GoogleAccountSwitch *AccountChangeOrSomethingEvent `protobuf:"bytes,2,opt,name=googleAccountSwitch,proto3" json:"googleAccountSwitch,omitempty"`
	Status              SendMessageResponse_Status     `protobuf:"varint,3,opt,name=status,proto3,enum=client.SendMessageResponse_Status" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*SendMessageResponse) Descriptor deprecated

func (*SendMessageResponse) Descriptor() ([]byte, []int)

Deprecated: Use SendMessageResponse.ProtoReflect.Descriptor instead.

func (*SendMessageResponse) GetGoogleAccountSwitch

func (x *SendMessageResponse) GetGoogleAccountSwitch() *AccountChangeOrSomethingEvent

func (*SendMessageResponse) GetStatus

func (*SendMessageResponse) ProtoMessage

func (*SendMessageResponse) ProtoMessage()

func (*SendMessageResponse) ProtoReflect

func (x *SendMessageResponse) ProtoReflect() protoreflect.Message

func (*SendMessageResponse) Reset

func (x *SendMessageResponse) Reset()

func (*SendMessageResponse) String

func (x *SendMessageResponse) String() string

type SendMessageResponse_Status

type SendMessageResponse_Status int32
const (
	SendMessageResponse_UNKNOWN   SendMessageResponse_Status = 0
	SendMessageResponse_SUCCESS   SendMessageResponse_Status = 1
	SendMessageResponse_FAILURE_2 SendMessageResponse_Status = 2
	SendMessageResponse_FAILURE_3 SendMessageResponse_Status = 3
	SendMessageResponse_FAILURE_4 SendMessageResponse_Status = 4 // not default sms app?
)

func (SendMessageResponse_Status) Descriptor

func (SendMessageResponse_Status) Enum

func (SendMessageResponse_Status) EnumDescriptor deprecated

func (SendMessageResponse_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use SendMessageResponse_Status.Descriptor instead.

func (SendMessageResponse_Status) Number

func (SendMessageResponse_Status) String

func (SendMessageResponse_Status) Type

type SendReactionRequest

type SendReactionRequest struct {
	MessageID    string                     `protobuf:"bytes,1,opt,name=messageID,proto3" json:"messageID,omitempty"`
	ReactionData *ReactionData              `protobuf:"bytes,2,opt,name=reactionData,proto3" json:"reactionData,omitempty"`
	Action       SendReactionRequest_Action `protobuf:"varint,3,opt,name=action,proto3,enum=client.SendReactionRequest_Action" json:"action,omitempty"`
	SIMPayload   *SIMPayload                `protobuf:"bytes,4,opt,name=SIMPayload,proto3" json:"SIMPayload,omitempty"`
	// contains filtered or unexported fields
}

func (*SendReactionRequest) Descriptor deprecated

func (*SendReactionRequest) Descriptor() ([]byte, []int)

Deprecated: Use SendReactionRequest.ProtoReflect.Descriptor instead.

func (*SendReactionRequest) GetAction

func (*SendReactionRequest) GetMessageID

func (x *SendReactionRequest) GetMessageID() string

func (*SendReactionRequest) GetReactionData

func (x *SendReactionRequest) GetReactionData() *ReactionData

func (*SendReactionRequest) GetSIMPayload

func (x *SendReactionRequest) GetSIMPayload() *SIMPayload

func (*SendReactionRequest) ProtoMessage

func (*SendReactionRequest) ProtoMessage()

func (*SendReactionRequest) ProtoReflect

func (x *SendReactionRequest) ProtoReflect() protoreflect.Message

func (*SendReactionRequest) Reset

func (x *SendReactionRequest) Reset()

func (*SendReactionRequest) String

func (x *SendReactionRequest) String() string

type SendReactionRequest_Action

type SendReactionRequest_Action int32
const (
	SendReactionRequest_UNSPECIFIED SendReactionRequest_Action = 0
	SendReactionRequest_ADD         SendReactionRequest_Action = 1
	SendReactionRequest_REMOVE      SendReactionRequest_Action = 2
	SendReactionRequest_SWITCH      SendReactionRequest_Action = 3
)

func (SendReactionRequest_Action) Descriptor

func (SendReactionRequest_Action) Enum

func (SendReactionRequest_Action) EnumDescriptor deprecated

func (SendReactionRequest_Action) EnumDescriptor() ([]byte, []int)

Deprecated: Use SendReactionRequest_Action.Descriptor instead.

func (SendReactionRequest_Action) Number

func (SendReactionRequest_Action) String

func (SendReactionRequest_Action) Type

type SendReactionResponse

type SendReactionResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*SendReactionResponse) Descriptor deprecated

func (*SendReactionResponse) Descriptor() ([]byte, []int)

Deprecated: Use SendReactionResponse.ProtoReflect.Descriptor instead.

func (*SendReactionResponse) GetSuccess

func (x *SendReactionResponse) GetSuccess() bool

func (*SendReactionResponse) ProtoMessage

func (*SendReactionResponse) ProtoMessage()

func (*SendReactionResponse) ProtoReflect

func (x *SendReactionResponse) ProtoReflect() protoreflect.Message

func (*SendReactionResponse) Reset

func (x *SendReactionResponse) Reset()

func (*SendReactionResponse) String

func (x *SendReactionResponse) String() string

type Settings

type Settings struct {
	SIMCards        []*SIMCard      `protobuf:"bytes,2,rep,name=SIMCards,proto3" json:"SIMCards,omitempty"`
	OpCodeData      *SomeData       `protobuf:"bytes,3,opt,name=opCodeData,proto3" json:"opCodeData,omitempty"`
	RCSSettings     *RCSSettings    `protobuf:"bytes,4,opt,name=RCSSettings,proto3" json:"RCSSettings,omitempty"`
	BugleVersion    string          `protobuf:"bytes,5,opt,name=bugleVersion,proto3" json:"bugleVersion,omitempty"`
	Bool1           bool            `protobuf:"varint,7,opt,name=bool1,proto3" json:"bool1,omitempty"`
	BoolFields2     *BooleanFields2 `protobuf:"bytes,8,opt,name=boolFields2,proto3" json:"boolFields2,omitempty"`
	MysteriousBytes []byte          `protobuf:"bytes,9,opt,name=mysteriousBytes,proto3" json:"mysteriousBytes,omitempty"`
	BoolFields3     *BooleanFields3 `protobuf:"bytes,10,opt,name=boolFields3,proto3" json:"boolFields3,omitempty"`
	// contains filtered or unexported fields
}

func (*Settings) Descriptor deprecated

func (*Settings) Descriptor() ([]byte, []int)

Deprecated: Use Settings.ProtoReflect.Descriptor instead.

func (*Settings) GetBool1

func (x *Settings) GetBool1() bool

func (*Settings) GetBoolFields2

func (x *Settings) GetBoolFields2() *BooleanFields2

func (*Settings) GetBoolFields3

func (x *Settings) GetBoolFields3() *BooleanFields3

func (*Settings) GetBugleVersion

func (x *Settings) GetBugleVersion() string

func (*Settings) GetMysteriousBytes

func (x *Settings) GetMysteriousBytes() []byte

func (*Settings) GetOpCodeData

func (x *Settings) GetOpCodeData() *SomeData

func (*Settings) GetRCSSettings

func (x *Settings) GetRCSSettings() *RCSSettings

func (*Settings) GetSIMCards

func (x *Settings) GetSIMCards() []*SIMCard

func (*Settings) ProtoMessage

func (*Settings) ProtoMessage()

func (*Settings) ProtoReflect

func (x *Settings) ProtoReflect() protoreflect.Message

func (*Settings) Reset

func (x *Settings) Reset()

func (*Settings) String

func (x *Settings) String() string

type SignInGaiaRequest

type SignInGaiaRequest struct {
	AuthMessage *AuthMessage             `protobuf:"bytes,1,opt,name=authMessage,proto3" json:"authMessage,omitempty"`
	Inner       *SignInGaiaRequest_Inner `protobuf:"bytes,2,opt,name=inner,proto3" json:"inner,omitempty"`
	UnknownInt3 int32                    `protobuf:"varint,3,opt,name=unknownInt3,proto3" json:"unknownInt3,omitempty"`
	Network     string                   `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
	// contains filtered or unexported fields
}

func (*SignInGaiaRequest) Descriptor deprecated

func (*SignInGaiaRequest) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaRequest.ProtoReflect.Descriptor instead.

func (*SignInGaiaRequest) GetAuthMessage

func (x *SignInGaiaRequest) GetAuthMessage() *AuthMessage

func (*SignInGaiaRequest) GetInner

func (*SignInGaiaRequest) GetNetwork

func (x *SignInGaiaRequest) GetNetwork() string

func (*SignInGaiaRequest) GetUnknownInt3

func (x *SignInGaiaRequest) GetUnknownInt3() int32

func (*SignInGaiaRequest) ProtoMessage

func (*SignInGaiaRequest) ProtoMessage()

func (*SignInGaiaRequest) ProtoReflect

func (x *SignInGaiaRequest) ProtoReflect() protoreflect.Message

func (*SignInGaiaRequest) Reset

func (x *SignInGaiaRequest) Reset()

func (*SignInGaiaRequest) String

func (x *SignInGaiaRequest) String() string

type SignInGaiaRequest_Inner

type SignInGaiaRequest_Inner struct {
	DeviceID *SignInGaiaRequest_Inner_DeviceID `protobuf:"bytes,1,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	SomeData *SignInGaiaRequest_Inner_Data     `protobuf:"bytes,36,opt,name=someData,proto3" json:"someData,omitempty"`
	// contains filtered or unexported fields
}

func (*SignInGaiaRequest_Inner) Descriptor deprecated

func (*SignInGaiaRequest_Inner) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaRequest_Inner.ProtoReflect.Descriptor instead.

func (*SignInGaiaRequest_Inner) GetDeviceID

func (*SignInGaiaRequest_Inner) GetSomeData

func (*SignInGaiaRequest_Inner) ProtoMessage

func (*SignInGaiaRequest_Inner) ProtoMessage()

func (*SignInGaiaRequest_Inner) ProtoReflect

func (x *SignInGaiaRequest_Inner) ProtoReflect() protoreflect.Message

func (*SignInGaiaRequest_Inner) Reset

func (x *SignInGaiaRequest_Inner) Reset()

func (*SignInGaiaRequest_Inner) String

func (x *SignInGaiaRequest_Inner) String() string

type SignInGaiaRequest_Inner_Data

type SignInGaiaRequest_Inner_Data struct {
	SomeData []byte `protobuf:"bytes,3,opt,name=someData,proto3" json:"someData,omitempty"` // maybe an encryption key?
	// contains filtered or unexported fields
}

func (*SignInGaiaRequest_Inner_Data) Descriptor deprecated

func (*SignInGaiaRequest_Inner_Data) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaRequest_Inner_Data.ProtoReflect.Descriptor instead.

func (*SignInGaiaRequest_Inner_Data) GetSomeData

func (x *SignInGaiaRequest_Inner_Data) GetSomeData() []byte

func (*SignInGaiaRequest_Inner_Data) ProtoMessage

func (*SignInGaiaRequest_Inner_Data) ProtoMessage()

func (*SignInGaiaRequest_Inner_Data) ProtoReflect

func (*SignInGaiaRequest_Inner_Data) Reset

func (x *SignInGaiaRequest_Inner_Data) Reset()

func (*SignInGaiaRequest_Inner_Data) String

type SignInGaiaRequest_Inner_DeviceID

type SignInGaiaRequest_Inner_DeviceID struct {
	UnknownInt1 int32  `protobuf:"varint,1,opt,name=unknownInt1,proto3" json:"unknownInt1,omitempty"` // 3
	DeviceID    string `protobuf:"bytes,2,opt,name=deviceID,proto3" json:"deviceID,omitempty"`        // messages-web-{uuid without dashes}
	// contains filtered or unexported fields
}

func (*SignInGaiaRequest_Inner_DeviceID) Descriptor deprecated

func (*SignInGaiaRequest_Inner_DeviceID) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaRequest_Inner_DeviceID.ProtoReflect.Descriptor instead.

func (*SignInGaiaRequest_Inner_DeviceID) GetDeviceID

func (x *SignInGaiaRequest_Inner_DeviceID) GetDeviceID() string

func (*SignInGaiaRequest_Inner_DeviceID) GetUnknownInt1

func (x *SignInGaiaRequest_Inner_DeviceID) GetUnknownInt1() int32

func (*SignInGaiaRequest_Inner_DeviceID) ProtoMessage

func (*SignInGaiaRequest_Inner_DeviceID) ProtoMessage()

func (*SignInGaiaRequest_Inner_DeviceID) ProtoReflect

func (*SignInGaiaRequest_Inner_DeviceID) Reset

func (*SignInGaiaRequest_Inner_DeviceID) String

type SignInGaiaResponse

type SignInGaiaResponse struct {
	Header           *SignInGaiaResponse_Header     `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	MaybeBrowserUUID string                         `protobuf:"bytes,2,opt,name=maybeBrowserUUID,proto3" json:"maybeBrowserUUID,omitempty"`
	DeviceData       *SignInGaiaResponse_DeviceData `protobuf:"bytes,3,opt,name=deviceData,proto3" json:"deviceData,omitempty"`
	TokenData        *TokenData                     `protobuf:"bytes,4,opt,name=tokenData,proto3" json:"tokenData,omitempty"`
	// contains filtered or unexported fields
}

func (*SignInGaiaResponse) Descriptor deprecated

func (*SignInGaiaResponse) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaResponse.ProtoReflect.Descriptor instead.

func (*SignInGaiaResponse) GetDeviceData

func (*SignInGaiaResponse) GetHeader

func (*SignInGaiaResponse) GetMaybeBrowserUUID

func (x *SignInGaiaResponse) GetMaybeBrowserUUID() string

func (*SignInGaiaResponse) GetTokenData

func (x *SignInGaiaResponse) GetTokenData() *TokenData

func (*SignInGaiaResponse) ProtoMessage

func (*SignInGaiaResponse) ProtoMessage()

func (*SignInGaiaResponse) ProtoReflect

func (x *SignInGaiaResponse) ProtoReflect() protoreflect.Message

func (*SignInGaiaResponse) Reset

func (x *SignInGaiaResponse) Reset()

func (*SignInGaiaResponse) String

func (x *SignInGaiaResponse) String() string

type SignInGaiaResponse_DeviceData

type SignInGaiaResponse_DeviceData struct {
	DeviceWrapper *SignInGaiaResponse_DeviceData_DeviceWrapper `protobuf:"bytes,1,opt,name=deviceWrapper,proto3" json:"deviceWrapper,omitempty"`
	UnknownItems2 []*RPCGaiaData_UnknownContainer_Item2_Item1  `protobuf:"bytes,2,rep,name=unknownItems2,proto3" json:"unknownItems2,omitempty"`
	UnknownItems3 []*RPCGaiaData_UnknownContainer_Item4        `protobuf:"bytes,3,rep,name=unknownItems3,proto3" json:"unknownItems3,omitempty"` // index 4 is some unknown field with no real data
	// contains filtered or unexported fields
}

func (*SignInGaiaResponse_DeviceData) Descriptor deprecated

func (*SignInGaiaResponse_DeviceData) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaResponse_DeviceData.ProtoReflect.Descriptor instead.

func (*SignInGaiaResponse_DeviceData) GetDeviceWrapper

func (*SignInGaiaResponse_DeviceData) GetUnknownItems2

func (*SignInGaiaResponse_DeviceData) GetUnknownItems3

func (*SignInGaiaResponse_DeviceData) ProtoMessage

func (*SignInGaiaResponse_DeviceData) ProtoMessage()

func (*SignInGaiaResponse_DeviceData) ProtoReflect

func (*SignInGaiaResponse_DeviceData) Reset

func (x *SignInGaiaResponse_DeviceData) Reset()

func (*SignInGaiaResponse_DeviceData) String

type SignInGaiaResponse_DeviceData_DeviceWrapper

type SignInGaiaResponse_DeviceData_DeviceWrapper struct {
	Device *Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
	// contains filtered or unexported fields
}

func (*SignInGaiaResponse_DeviceData_DeviceWrapper) Descriptor deprecated

Deprecated: Use SignInGaiaResponse_DeviceData_DeviceWrapper.ProtoReflect.Descriptor instead.

func (*SignInGaiaResponse_DeviceData_DeviceWrapper) GetDevice

func (*SignInGaiaResponse_DeviceData_DeviceWrapper) ProtoMessage

func (*SignInGaiaResponse_DeviceData_DeviceWrapper) ProtoReflect

func (*SignInGaiaResponse_DeviceData_DeviceWrapper) Reset

func (*SignInGaiaResponse_DeviceData_DeviceWrapper) String

type SignInGaiaResponse_Header

type SignInGaiaResponse_Header struct {
	UnknownInt2      uint64 `protobuf:"varint,2,opt,name=unknownInt2,proto3" json:"unknownInt2,omitempty"`
	UnknownTimestamp int64  `protobuf:"varint,4,opt,name=unknownTimestamp,proto3" json:"unknownTimestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*SignInGaiaResponse_Header) Descriptor deprecated

func (*SignInGaiaResponse_Header) Descriptor() ([]byte, []int)

Deprecated: Use SignInGaiaResponse_Header.ProtoReflect.Descriptor instead.

func (*SignInGaiaResponse_Header) GetUnknownInt2

func (x *SignInGaiaResponse_Header) GetUnknownInt2() uint64

func (*SignInGaiaResponse_Header) GetUnknownTimestamp

func (x *SignInGaiaResponse_Header) GetUnknownTimestamp() int64

func (*SignInGaiaResponse_Header) ProtoMessage

func (*SignInGaiaResponse_Header) ProtoMessage()

func (*SignInGaiaResponse_Header) ProtoReflect

func (*SignInGaiaResponse_Header) Reset

func (x *SignInGaiaResponse_Header) Reset()

func (*SignInGaiaResponse_Header) String

func (x *SignInGaiaResponse_Header) String() string

type SimpleRsaPublicKey

type SimpleRsaPublicKey struct {

	// Encoded in big-endian two's complement
	N []byte `protobuf:"bytes,1,opt,name=n,proto3" json:"n,omitempty"`
	E int32  `protobuf:"varint,2,opt,name=e,proto3" json:"e,omitempty"`
	// contains filtered or unexported fields
}

A convenience proto for encoding RSA public keys with small exponents

func (*SimpleRsaPublicKey) Descriptor deprecated

func (*SimpleRsaPublicKey) Descriptor() ([]byte, []int)

Deprecated: Use SimpleRsaPublicKey.ProtoReflect.Descriptor instead.

func (*SimpleRsaPublicKey) GetE

func (x *SimpleRsaPublicKey) GetE() int32

func (*SimpleRsaPublicKey) GetN

func (x *SimpleRsaPublicKey) GetN() []byte

func (*SimpleRsaPublicKey) ProtoMessage

func (*SimpleRsaPublicKey) ProtoMessage()

func (*SimpleRsaPublicKey) ProtoReflect

func (x *SimpleRsaPublicKey) ProtoReflect() protoreflect.Message

func (*SimpleRsaPublicKey) Reset

func (x *SimpleRsaPublicKey) Reset()

func (*SimpleRsaPublicKey) String

func (x *SimpleRsaPublicKey) String() string

type SmallInfo

type SmallInfo struct {
	Type          IdentifierType `protobuf:"varint,1,opt,name=type,proto3,enum=conversations.IdentifierType" json:"type,omitempty"`
	Number        string         `protobuf:"bytes,2,opt,name=number,proto3" json:"number,omitempty"`
	ParticipantID string         `protobuf:"bytes,3,opt,name=participantID,proto3" json:"participantID,omitempty"`
	// contains filtered or unexported fields
}

func (*SmallInfo) Descriptor deprecated

func (*SmallInfo) Descriptor() ([]byte, []int)

Deprecated: Use SmallInfo.ProtoReflect.Descriptor instead.

func (*SmallInfo) GetNumber

func (x *SmallInfo) GetNumber() string

func (*SmallInfo) GetParticipantID

func (x *SmallInfo) GetParticipantID() string

func (*SmallInfo) GetType

func (x *SmallInfo) GetType() IdentifierType

func (*SmallInfo) ProtoMessage

func (*SmallInfo) ProtoMessage()

func (*SmallInfo) ProtoReflect

func (x *SmallInfo) ProtoReflect() protoreflect.Message

func (*SmallInfo) Reset

func (x *SmallInfo) Reset()

func (*SmallInfo) String

func (x *SmallInfo) String() string

type SomeData

type SomeData struct {
	Field7     bool     `protobuf:"varint,7,opt,name=field7,proto3" json:"field7,omitempty"`
	Field12    bool     `protobuf:"varint,12,opt,name=field12,proto3" json:"field12,omitempty"`
	SomeEmojis [][]byte `protobuf:"bytes,15,rep,name=someEmojis,proto3" json:"someEmojis,omitempty"`
	JsonData   string   `protobuf:"bytes,16,opt,name=jsonData,proto3" json:"jsonData,omitempty"`
	SomeString string   `protobuf:"bytes,17,opt,name=someString,proto3" json:"someString,omitempty"`
	// contains filtered or unexported fields
}

func (*SomeData) Descriptor deprecated

func (*SomeData) Descriptor() ([]byte, []int)

Deprecated: Use SomeData.ProtoReflect.Descriptor instead.

func (*SomeData) GetField12

func (x *SomeData) GetField12() bool

func (*SomeData) GetField7

func (x *SomeData) GetField7() bool

func (*SomeData) GetJsonData

func (x *SomeData) GetJsonData() string

func (*SomeData) GetSomeEmojis

func (x *SomeData) GetSomeEmojis() [][]byte

func (*SomeData) GetSomeString

func (x *SomeData) GetSomeString() string

func (*SomeData) ProtoMessage

func (*SomeData) ProtoMessage()

func (*SomeData) ProtoReflect

func (x *SomeData) ProtoReflect() protoreflect.Message

func (*SomeData) Reset

func (x *SomeData) Reset()

func (*SomeData) String

func (x *SomeData) String() string

type StartAckMessage

type StartAckMessage struct {
	Count *int32 `protobuf:"varint,1,opt,name=count,proto3,oneof" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*StartAckMessage) Descriptor deprecated

func (*StartAckMessage) Descriptor() ([]byte, []int)

Deprecated: Use StartAckMessage.ProtoReflect.Descriptor instead.

func (*StartAckMessage) GetCount

func (x *StartAckMessage) GetCount() int32

func (*StartAckMessage) ProtoMessage

func (*StartAckMessage) ProtoMessage()

func (*StartAckMessage) ProtoReflect

func (x *StartAckMessage) ProtoReflect() protoreflect.Message

func (*StartAckMessage) Reset

func (x *StartAckMessage) Reset()

func (*StartAckMessage) String

func (x *StartAckMessage) String() string

type StartMediaUploadRequest

type StartMediaUploadRequest struct {
	AttachmentType int64        `protobuf:"varint,1,opt,name=attachmentType,proto3" json:"attachmentType,omitempty"`
	AuthData       *AuthMessage `protobuf:"bytes,2,opt,name=authData,proto3" json:"authData,omitempty"`
	Mobile         *Device      `protobuf:"bytes,3,opt,name=mobile,proto3" json:"mobile,omitempty"`
	// contains filtered or unexported fields
}

func (*StartMediaUploadRequest) Descriptor deprecated

func (*StartMediaUploadRequest) Descriptor() ([]byte, []int)

Deprecated: Use StartMediaUploadRequest.ProtoReflect.Descriptor instead.

func (*StartMediaUploadRequest) GetAttachmentType

func (x *StartMediaUploadRequest) GetAttachmentType() int64

func (*StartMediaUploadRequest) GetAuthData

func (x *StartMediaUploadRequest) GetAuthData() *AuthMessage

func (*StartMediaUploadRequest) GetMobile

func (x *StartMediaUploadRequest) GetMobile() *Device

func (*StartMediaUploadRequest) ProtoMessage

func (*StartMediaUploadRequest) ProtoMessage()

func (*StartMediaUploadRequest) ProtoReflect

func (x *StartMediaUploadRequest) ProtoReflect() protoreflect.Message

func (*StartMediaUploadRequest) Reset

func (x *StartMediaUploadRequest) Reset()

func (*StartMediaUploadRequest) String

func (x *StartMediaUploadRequest) String() string

type ThumbnailData

type ThumbnailData struct {

	// 2 -> 13: 16 mysterious bytes
	ImageBuffer    []byte                        `protobuf:"bytes,3,opt,name=imageBuffer,proto3" json:"imageBuffer,omitempty"`
	SomeInt        int32                         `protobuf:"varint,4,opt,name=someInt,proto3" json:"someInt,omitempty"`
	Dimensions     *Dimensions                   `protobuf:"bytes,5,opt,name=dimensions,proto3" json:"dimensions,omitempty"`
	MysteriousData *ThumbnailData_MysteriousData `protobuf:"bytes,2,opt,name=mysteriousData,proto3" json:"mysteriousData,omitempty"`
	// contains filtered or unexported fields
}

func (*ThumbnailData) Descriptor deprecated

func (*ThumbnailData) Descriptor() ([]byte, []int)

Deprecated: Use ThumbnailData.ProtoReflect.Descriptor instead.

func (*ThumbnailData) GetDimensions

func (x *ThumbnailData) GetDimensions() *Dimensions

func (*ThumbnailData) GetImageBuffer

func (x *ThumbnailData) GetImageBuffer() []byte

func (*ThumbnailData) GetMysteriousData

func (x *ThumbnailData) GetMysteriousData() *ThumbnailData_MysteriousData

func (*ThumbnailData) GetSomeInt

func (x *ThumbnailData) GetSomeInt() int32

func (*ThumbnailData) ProtoMessage

func (*ThumbnailData) ProtoMessage()

func (*ThumbnailData) ProtoReflect

func (x *ThumbnailData) ProtoReflect() protoreflect.Message

func (*ThumbnailData) Reset

func (x *ThumbnailData) Reset()

func (*ThumbnailData) String

func (x *ThumbnailData) String() string

type ThumbnailData_MysteriousData

type ThumbnailData_MysteriousData struct {
	MaybeAHash uint64 `protobuf:"fixed64,13,opt,name=maybeAHash,proto3" json:"maybeAHash,omitempty"`
	// contains filtered or unexported fields
}

func (*ThumbnailData_MysteriousData) Descriptor deprecated

func (*ThumbnailData_MysteriousData) Descriptor() ([]byte, []int)

Deprecated: Use ThumbnailData_MysteriousData.ProtoReflect.Descriptor instead.

func (*ThumbnailData_MysteriousData) GetMaybeAHash

func (x *ThumbnailData_MysteriousData) GetMaybeAHash() uint64

func (*ThumbnailData_MysteriousData) ProtoMessage

func (*ThumbnailData_MysteriousData) ProtoMessage()

func (*ThumbnailData_MysteriousData) ProtoReflect

func (*ThumbnailData_MysteriousData) Reset

func (x *ThumbnailData_MysteriousData) Reset()

func (*ThumbnailData_MysteriousData) String

type TokenData

type TokenData struct {
	TachyonAuthToken []byte `protobuf:"bytes,1,opt,name=tachyonAuthToken,proto3" json:"tachyonAuthToken,omitempty"`
	TTL              int64  `protobuf:"varint,2,opt,name=TTL,proto3" json:"TTL,omitempty"`
	// contains filtered or unexported fields
}

func (*TokenData) Descriptor deprecated

func (*TokenData) Descriptor() ([]byte, []int)

Deprecated: Use TokenData.ProtoReflect.Descriptor instead.

func (*TokenData) GetTTL

func (x *TokenData) GetTTL() int64

func (*TokenData) GetTachyonAuthToken

func (x *TokenData) GetTachyonAuthToken() []byte

func (*TokenData) ProtoMessage

func (*TokenData) ProtoMessage()

func (*TokenData) ProtoReflect

func (x *TokenData) ProtoReflect() protoreflect.Message

func (*TokenData) Reset

func (x *TokenData) Reset()

func (*TokenData) String

func (x *TokenData) String() string

type TypingData

type TypingData struct {
	ConversationID string      `protobuf:"bytes,1,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	User           *User       `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
	Type           TypingTypes `protobuf:"varint,3,opt,name=type,proto3,enum=events.TypingTypes" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*TypingData) Descriptor deprecated

func (*TypingData) Descriptor() ([]byte, []int)

Deprecated: Use TypingData.ProtoReflect.Descriptor instead.

func (*TypingData) GetConversationID

func (x *TypingData) GetConversationID() string

func (*TypingData) GetType

func (x *TypingData) GetType() TypingTypes

func (*TypingData) GetUser

func (x *TypingData) GetUser() *User

func (*TypingData) ProtoMessage

func (*TypingData) ProtoMessage()

func (*TypingData) ProtoReflect

func (x *TypingData) ProtoReflect() protoreflect.Message

func (*TypingData) Reset

func (x *TypingData) Reset()

func (*TypingData) String

func (x *TypingData) String() string

type TypingEvent

type TypingEvent struct {
	Data *TypingData `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*TypingEvent) Descriptor deprecated

func (*TypingEvent) Descriptor() ([]byte, []int)

Deprecated: Use TypingEvent.ProtoReflect.Descriptor instead.

func (*TypingEvent) GetData

func (x *TypingEvent) GetData() *TypingData

func (*TypingEvent) ProtoMessage

func (*TypingEvent) ProtoMessage()

func (*TypingEvent) ProtoReflect

func (x *TypingEvent) ProtoReflect() protoreflect.Message

func (*TypingEvent) Reset

func (x *TypingEvent) Reset()

func (*TypingEvent) String

func (x *TypingEvent) String() string

type TypingTypes

type TypingTypes int32
const (
	TypingTypes_STOPPED_TYPING TypingTypes = 0
	TypingTypes_STARTED_TYPING TypingTypes = 1
)

func (TypingTypes) Descriptor

func (TypingTypes) Enum

func (x TypingTypes) Enum() *TypingTypes

func (TypingTypes) EnumDescriptor deprecated

func (TypingTypes) EnumDescriptor() ([]byte, []int)

Deprecated: Use TypingTypes.Descriptor instead.

func (TypingTypes) Number

func (x TypingTypes) Number() protoreflect.EnumNumber

func (TypingTypes) String

func (x TypingTypes) String() string

func (TypingTypes) Type

type TypingUpdateRequest

type TypingUpdateRequest struct {
	Data *TypingUpdateRequest_Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*TypingUpdateRequest) Descriptor deprecated

func (*TypingUpdateRequest) Descriptor() ([]byte, []int)

Deprecated: Use TypingUpdateRequest.ProtoReflect.Descriptor instead.

func (*TypingUpdateRequest) GetData

func (*TypingUpdateRequest) ProtoMessage

func (*TypingUpdateRequest) ProtoMessage()

func (*TypingUpdateRequest) ProtoReflect

func (x *TypingUpdateRequest) ProtoReflect() protoreflect.Message

func (*TypingUpdateRequest) Reset

func (x *TypingUpdateRequest) Reset()

func (*TypingUpdateRequest) String

func (x *TypingUpdateRequest) String() string

type TypingUpdateRequest_Data

type TypingUpdateRequest_Data struct {
	ConversationID string `protobuf:"bytes,1,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	Typing         bool   `protobuf:"varint,3,opt,name=typing,proto3" json:"typing,omitempty"`
	// contains filtered or unexported fields
}

func (*TypingUpdateRequest_Data) Descriptor deprecated

func (*TypingUpdateRequest_Data) Descriptor() ([]byte, []int)

Deprecated: Use TypingUpdateRequest_Data.ProtoReflect.Descriptor instead.

func (*TypingUpdateRequest_Data) GetConversationID

func (x *TypingUpdateRequest_Data) GetConversationID() string

func (*TypingUpdateRequest_Data) GetTyping

func (x *TypingUpdateRequest_Data) GetTyping() bool

func (*TypingUpdateRequest_Data) ProtoMessage

func (*TypingUpdateRequest_Data) ProtoMessage()

func (*TypingUpdateRequest_Data) ProtoReflect

func (x *TypingUpdateRequest_Data) ProtoReflect() protoreflect.Message

func (*TypingUpdateRequest_Data) Reset

func (x *TypingUpdateRequest_Data) Reset()

func (*TypingUpdateRequest_Data) String

func (x *TypingUpdateRequest_Data) String() string

type URLData

type URLData struct {
	PairingKey []byte `protobuf:"bytes,1,opt,name=pairingKey,proto3" json:"pairingKey,omitempty"`
	AESKey     []byte `protobuf:"bytes,2,opt,name=AESKey,proto3" json:"AESKey,omitempty"`
	HMACKey    []byte `protobuf:"bytes,3,opt,name=HMACKey,proto3" json:"HMACKey,omitempty"`
	// contains filtered or unexported fields
}

func (*URLData) Descriptor deprecated

func (*URLData) Descriptor() ([]byte, []int)

Deprecated: Use URLData.ProtoReflect.Descriptor instead.

func (*URLData) GetAESKey

func (x *URLData) GetAESKey() []byte

func (*URLData) GetHMACKey

func (x *URLData) GetHMACKey() []byte

func (*URLData) GetPairingKey

func (x *URLData) GetPairingKey() []byte

func (*URLData) ProtoMessage

func (*URLData) ProtoMessage()

func (*URLData) ProtoReflect

func (x *URLData) ProtoReflect() protoreflect.Message

func (*URLData) Reset

func (x *URLData) Reset()

func (*URLData) String

func (x *URLData) String() string

type Ukey2Alert

type Ukey2Alert struct {
	Type         Ukey2Alert_AlertType `protobuf:"varint,1,opt,name=type,proto3,enum=ukey.Ukey2Alert_AlertType" json:"type,omitempty"`
	ErrorMessage string               `protobuf:"bytes,2,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
	// contains filtered or unexported fields
}

func (*Ukey2Alert) Descriptor deprecated

func (*Ukey2Alert) Descriptor() ([]byte, []int)

Deprecated: Use Ukey2Alert.ProtoReflect.Descriptor instead.

func (*Ukey2Alert) GetErrorMessage

func (x *Ukey2Alert) GetErrorMessage() string

func (*Ukey2Alert) GetType

func (x *Ukey2Alert) GetType() Ukey2Alert_AlertType

func (*Ukey2Alert) ProtoMessage

func (*Ukey2Alert) ProtoMessage()

func (*Ukey2Alert) ProtoReflect

func (x *Ukey2Alert) ProtoReflect() protoreflect.Message

func (*Ukey2Alert) Reset

func (x *Ukey2Alert) Reset()

func (*Ukey2Alert) String

func (x *Ukey2Alert) String() string

type Ukey2Alert_AlertType

type Ukey2Alert_AlertType int32
const (
	Ukey2Alert_UNKNOWN_ALERT_TYPE Ukey2Alert_AlertType = 0
	// Framing errors
	Ukey2Alert_BAD_MESSAGE       Ukey2Alert_AlertType = 1 // The message could not be deserialized
	Ukey2Alert_BAD_MESSAGE_TYPE  Ukey2Alert_AlertType = 2 // message_type has an undefined value
	Ukey2Alert_INCORRECT_MESSAGE Ukey2Alert_AlertType = 3 // message_type received does not correspond to expected type at this stage of the protocol
	Ukey2Alert_BAD_MESSAGE_DATA  Ukey2Alert_AlertType = 4 // Could not deserialize message_data as per value in message_type
	// ClientInit and ServerInit errors
	Ukey2Alert_BAD_VERSION          Ukey2Alert_AlertType = 100 // version is invalid; server cannot find suitable version to speak with client.
	Ukey2Alert_BAD_RANDOM           Ukey2Alert_AlertType = 101 // Random data is missing or of incorrect length
	Ukey2Alert_BAD_HANDSHAKE_CIPHER Ukey2Alert_AlertType = 102 // No suitable handshake ciphers were found
	Ukey2Alert_BAD_NEXT_PROTOCOL    Ukey2Alert_AlertType = 103 // The next protocol is missing, unknown, or unsupported
	Ukey2Alert_BAD_PUBLIC_KEY       Ukey2Alert_AlertType = 104 // The public key could not be parsed
	// Other errors
	Ukey2Alert_INTERNAL_ERROR Ukey2Alert_AlertType = 200 // An internal error has occurred.  error_message may contain additional details for logging and debugging.
)

func (Ukey2Alert_AlertType) Descriptor

func (Ukey2Alert_AlertType) Enum

func (Ukey2Alert_AlertType) EnumDescriptor deprecated

func (Ukey2Alert_AlertType) EnumDescriptor() ([]byte, []int)

Deprecated: Use Ukey2Alert_AlertType.Descriptor instead.

func (Ukey2Alert_AlertType) Number

func (Ukey2Alert_AlertType) String

func (x Ukey2Alert_AlertType) String() string

func (Ukey2Alert_AlertType) Type

type Ukey2ClientFinished

type Ukey2ClientFinished struct {
	PublicKey *GenericPublicKey `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"` // public key matching selected handshake cipher
	// contains filtered or unexported fields
}

func (*Ukey2ClientFinished) Descriptor deprecated

func (*Ukey2ClientFinished) Descriptor() ([]byte, []int)

Deprecated: Use Ukey2ClientFinished.ProtoReflect.Descriptor instead.

func (*Ukey2ClientFinished) GetPublicKey

func (x *Ukey2ClientFinished) GetPublicKey() *GenericPublicKey

func (*Ukey2ClientFinished) ProtoMessage

func (*Ukey2ClientFinished) ProtoMessage()

func (*Ukey2ClientFinished) ProtoReflect

func (x *Ukey2ClientFinished) ProtoReflect() protoreflect.Message

func (*Ukey2ClientFinished) Reset

func (x *Ukey2ClientFinished) Reset()

func (*Ukey2ClientFinished) String

func (x *Ukey2ClientFinished) String() string

type Ukey2ClientInit

type Ukey2ClientInit struct {
	Version           int32                               `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"` // highest supported version for rollback protection
	Random            []byte                              `protobuf:"bytes,2,opt,name=random,proto3" json:"random,omitempty"`    // random bytes for replay/reuse protection
	CipherCommitments []*Ukey2ClientInit_CipherCommitment `protobuf:"bytes,3,rep,name=cipher_commitments,json=cipherCommitments,proto3" json:"cipher_commitments,omitempty"`
	// Next protocol that the client wants to speak.
	NextProtocol string `protobuf:"bytes,4,opt,name=next_protocol,json=nextProtocol,proto3" json:"next_protocol,omitempty"`
	// contains filtered or unexported fields
}

func (*Ukey2ClientInit) Descriptor deprecated

func (*Ukey2ClientInit) Descriptor() ([]byte, []int)

Deprecated: Use Ukey2ClientInit.ProtoReflect.Descriptor instead.

func (*Ukey2ClientInit) GetCipherCommitments

func (x *Ukey2ClientInit) GetCipherCommitments() []*Ukey2ClientInit_CipherCommitment

func (*Ukey2ClientInit) GetNextProtocol

func (x *Ukey2ClientInit) GetNextProtocol() string

func (*Ukey2ClientInit) GetRandom

func (x *Ukey2ClientInit) GetRandom() []byte

func (*Ukey2ClientInit) GetVersion

func (x *Ukey2ClientInit) GetVersion() int32

func (*Ukey2ClientInit) ProtoMessage

func (*Ukey2ClientInit) ProtoMessage()

func (*Ukey2ClientInit) ProtoReflect

func (x *Ukey2ClientInit) ProtoReflect() protoreflect.Message

func (*Ukey2ClientInit) Reset

func (x *Ukey2ClientInit) Reset()

func (*Ukey2ClientInit) String

func (x *Ukey2ClientInit) String() string

type Ukey2ClientInit_CipherCommitment

type Ukey2ClientInit_CipherCommitment struct {
	HandshakeCipher Ukey2HandshakeCipher `` /* 138-byte string literal not displayed */
	Commitment      []byte               `protobuf:"bytes,2,opt,name=commitment,proto3" json:"commitment,omitempty"`
	// contains filtered or unexported fields
}

One commitment (hash of ClientFinished containing public key) per supported cipher

func (*Ukey2ClientInit_CipherCommitment) Descriptor deprecated

func (*Ukey2ClientInit_CipherCommitment) Descriptor() ([]byte, []int)

Deprecated: Use Ukey2ClientInit_CipherCommitment.ProtoReflect.Descriptor instead.

func (*Ukey2ClientInit_CipherCommitment) GetCommitment

func (x *Ukey2ClientInit_CipherCommitment) GetCommitment() []byte

func (*Ukey2ClientInit_CipherCommitment) GetHandshakeCipher

func (*Ukey2ClientInit_CipherCommitment) ProtoMessage

func (*Ukey2ClientInit_CipherCommitment) ProtoMessage()

func (*Ukey2ClientInit_CipherCommitment) ProtoReflect

func (*Ukey2ClientInit_CipherCommitment) Reset

func (*Ukey2ClientInit_CipherCommitment) String

type Ukey2HandshakeCipher

type Ukey2HandshakeCipher int32
const (
	Ukey2HandshakeCipher_RESERVED          Ukey2HandshakeCipher = 0
	Ukey2HandshakeCipher_P256_SHA512       Ukey2HandshakeCipher = 100 // NIST P-256 used for ECDH, SHA512 used for commitment
	Ukey2HandshakeCipher_CURVE25519_SHA512 Ukey2HandshakeCipher = 200 // Curve 25519 used for ECDH, SHA512 used for commitment
)

func (Ukey2HandshakeCipher) Descriptor

func (Ukey2HandshakeCipher) Enum

func (Ukey2HandshakeCipher) EnumDescriptor deprecated

func (Ukey2HandshakeCipher) EnumDescriptor() ([]byte, []int)

Deprecated: Use Ukey2HandshakeCipher.Descriptor instead.

func (Ukey2HandshakeCipher) Number

func (Ukey2HandshakeCipher) String

func (x Ukey2HandshakeCipher) String() string

func (Ukey2HandshakeCipher) Type

type Ukey2Message

type Ukey2Message struct {
	MessageType Ukey2Message_Type `protobuf:"varint,1,opt,name=message_type,json=messageType,proto3,enum=ukey.Ukey2Message_Type" json:"message_type,omitempty"` // Identifies message type
	MessageData []byte            `protobuf:"bytes,2,opt,name=message_data,json=messageData,proto3" json:"message_data,omitempty"`                              // Actual message, to be parsed according to message_type
	// contains filtered or unexported fields
}

func (*Ukey2Message) Descriptor deprecated

func (*Ukey2Message) Descriptor() ([]byte, []int)

Deprecated: Use Ukey2Message.ProtoReflect.Descriptor instead.

func (*Ukey2Message) GetMessageData

func (x *Ukey2Message) GetMessageData() []byte

func (*Ukey2Message) GetMessageType

func (x *Ukey2Message) GetMessageType() Ukey2Message_Type

func (*Ukey2Message) ProtoMessage

func (*Ukey2Message) ProtoMessage()

func (*Ukey2Message) ProtoReflect

func (x *Ukey2Message) ProtoReflect() protoreflect.Message

func (*Ukey2Message) Reset

func (x *Ukey2Message) Reset()

func (*Ukey2Message) String

func (x *Ukey2Message) String() string

type Ukey2Message_Type

type Ukey2Message_Type int32
const (
	Ukey2Message_UNKNOWN_DO_NOT_USE Ukey2Message_Type = 0
	Ukey2Message_ALERT              Ukey2Message_Type = 1
	Ukey2Message_CLIENT_INIT        Ukey2Message_Type = 2
	Ukey2Message_SERVER_INIT        Ukey2Message_Type = 3
	Ukey2Message_CLIENT_FINISH      Ukey2Message_Type = 4
)

func (Ukey2Message_Type) Descriptor

func (Ukey2Message_Type) Enum

func (Ukey2Message_Type) EnumDescriptor deprecated

func (Ukey2Message_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use Ukey2Message_Type.Descriptor instead.

func (Ukey2Message_Type) Number

func (Ukey2Message_Type) String

func (x Ukey2Message_Type) String() string

func (Ukey2Message_Type) Type

type Ukey2ServerInit

type Ukey2ServerInit struct {
	Version int32  `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"` // highest supported version for rollback protection
	Random  []byte `protobuf:"bytes,2,opt,name=random,proto3" json:"random,omitempty"`    // random bytes for replay/reuse protection
	// Selected Cipher and corresponding public key
	HandshakeCipher Ukey2HandshakeCipher `` /* 138-byte string literal not displayed */
	PublicKey       *GenericPublicKey    `protobuf:"bytes,4,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	// contains filtered or unexported fields
}

func (*Ukey2ServerInit) Descriptor deprecated

func (*Ukey2ServerInit) Descriptor() ([]byte, []int)

Deprecated: Use Ukey2ServerInit.ProtoReflect.Descriptor instead.

func (*Ukey2ServerInit) GetHandshakeCipher

func (x *Ukey2ServerInit) GetHandshakeCipher() Ukey2HandshakeCipher

func (*Ukey2ServerInit) GetPublicKey

func (x *Ukey2ServerInit) GetPublicKey() *GenericPublicKey

func (*Ukey2ServerInit) GetRandom

func (x *Ukey2ServerInit) GetRandom() []byte

func (*Ukey2ServerInit) GetVersion

func (x *Ukey2ServerInit) GetVersion() int32

func (*Ukey2ServerInit) ProtoMessage

func (*Ukey2ServerInit) ProtoMessage()

func (*Ukey2ServerInit) ProtoReflect

func (x *Ukey2ServerInit) ProtoReflect() protoreflect.Message

func (*Ukey2ServerInit) Reset

func (x *Ukey2ServerInit) Reset()

func (*Ukey2ServerInit) String

func (x *Ukey2ServerInit) String() string

type UnknownMessage

type UnknownMessage struct {
	Int1 int64 `protobuf:"varint,1,opt,name=int1,proto3" json:"int1,omitempty"`
	Int2 int64 `protobuf:"varint,2,opt,name=int2,proto3" json:"int2,omitempty"`
	// contains filtered or unexported fields
}

func (*UnknownMessage) Descriptor deprecated

func (*UnknownMessage) Descriptor() ([]byte, []int)

Deprecated: Use UnknownMessage.ProtoReflect.Descriptor instead.

func (*UnknownMessage) GetInt1

func (x *UnknownMessage) GetInt1() int64

func (*UnknownMessage) GetInt2

func (x *UnknownMessage) GetInt2() int64

func (*UnknownMessage) ProtoMessage

func (*UnknownMessage) ProtoMessage()

func (*UnknownMessage) ProtoReflect

func (x *UnknownMessage) ProtoReflect() protoreflect.Message

func (*UnknownMessage) Reset

func (x *UnknownMessage) Reset()

func (*UnknownMessage) String

func (x *UnknownMessage) String() string

type UpdateConversationData

type UpdateConversationData struct {
	ConversationID string `protobuf:"bytes,1,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	// Types that are assignable to Data:
	//
	//	*UpdateConversationData_Status
	//	*UpdateConversationData_Mute
	Data isUpdateConversationData_Data `protobuf_oneof:"data"`
	// contains filtered or unexported fields
}

func (*UpdateConversationData) Descriptor deprecated

func (*UpdateConversationData) Descriptor() ([]byte, []int)

Deprecated: Use UpdateConversationData.ProtoReflect.Descriptor instead.

func (*UpdateConversationData) GetConversationID

func (x *UpdateConversationData) GetConversationID() string

func (*UpdateConversationData) GetData

func (m *UpdateConversationData) GetData() isUpdateConversationData_Data

func (*UpdateConversationData) GetMute

func (*UpdateConversationData) GetStatus

func (*UpdateConversationData) ProtoMessage

func (*UpdateConversationData) ProtoMessage()

func (*UpdateConversationData) ProtoReflect

func (x *UpdateConversationData) ProtoReflect() protoreflect.Message

func (*UpdateConversationData) Reset

func (x *UpdateConversationData) Reset()

func (*UpdateConversationData) String

func (x *UpdateConversationData) String() string

type UpdateConversationData_Mute

type UpdateConversationData_Mute struct {
	Mute ConversationMuteStatus `protobuf:"varint,7,opt,name=mute,proto3,enum=client.ConversationMuteStatus,oneof"`
}

type UpdateConversationData_Status

type UpdateConversationData_Status struct {
	Status ConversationStatus `protobuf:"varint,12,opt,name=status,proto3,enum=conversations.ConversationStatus,oneof"`
}

type UpdateConversationRequest

type UpdateConversationRequest struct {
	Data           *UpdateConversationData  `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Action         ConversationActionStatus `protobuf:"varint,2,opt,name=action,proto3,enum=client.ConversationActionStatus" json:"action,omitempty"`
	ConversationID string                   `protobuf:"bytes,3,opt,name=conversationID,proto3" json:"conversationID,omitempty"`
	Action5        *ConversationAction5     `protobuf:"bytes,5,opt,name=action5,proto3" json:"action5,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateConversationRequest) Descriptor deprecated

func (*UpdateConversationRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateConversationRequest.ProtoReflect.Descriptor instead.

func (*UpdateConversationRequest) GetAction

func (*UpdateConversationRequest) GetAction5

func (*UpdateConversationRequest) GetConversationID

func (x *UpdateConversationRequest) GetConversationID() string

func (*UpdateConversationRequest) GetData

func (*UpdateConversationRequest) ProtoMessage

func (*UpdateConversationRequest) ProtoMessage()

func (*UpdateConversationRequest) ProtoReflect

func (*UpdateConversationRequest) Reset

func (x *UpdateConversationRequest) Reset()

func (*UpdateConversationRequest) String

func (x *UpdateConversationRequest) String() string

type UpdateConversationResponse

type UpdateConversationResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateConversationResponse) Descriptor deprecated

func (*UpdateConversationResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateConversationResponse.ProtoReflect.Descriptor instead.

func (*UpdateConversationResponse) GetSuccess

func (x *UpdateConversationResponse) GetSuccess() bool

func (*UpdateConversationResponse) ProtoMessage

func (*UpdateConversationResponse) ProtoMessage()

func (*UpdateConversationResponse) ProtoReflect

func (*UpdateConversationResponse) Reset

func (x *UpdateConversationResponse) Reset()

func (*UpdateConversationResponse) String

func (x *UpdateConversationResponse) String() string

type UpdateEvents

type UpdateEvents struct {

	// Types that are assignable to Event:
	//
	//	*UpdateEvents_ConversationEvent
	//	*UpdateEvents_MessageEvent
	//	*UpdateEvents_TypingEvent
	//	*UpdateEvents_SettingsEvent
	//	*UpdateEvents_UserAlertEvent
	//	*UpdateEvents_BrowserPresenceCheckEvent
	//	*UpdateEvents_AccountChange
	Event isUpdateEvents_Event `protobuf_oneof:"event"`
	// contains filtered or unexported fields
}

func (*UpdateEvents) Descriptor deprecated

func (*UpdateEvents) Descriptor() ([]byte, []int)

Deprecated: Use UpdateEvents.ProtoReflect.Descriptor instead.

func (*UpdateEvents) GetAccountChange

func (x *UpdateEvents) GetAccountChange() *AccountChangeOrSomethingEvent

func (*UpdateEvents) GetBrowserPresenceCheckEvent

func (x *UpdateEvents) GetBrowserPresenceCheckEvent() *BrowserPresenceCheckEvent

func (*UpdateEvents) GetConversationEvent

func (x *UpdateEvents) GetConversationEvent() *ConversationEvent

func (*UpdateEvents) GetEvent

func (m *UpdateEvents) GetEvent() isUpdateEvents_Event

func (*UpdateEvents) GetMessageEvent

func (x *UpdateEvents) GetMessageEvent() *MessageEvent

func (*UpdateEvents) GetSettingsEvent

func (x *UpdateEvents) GetSettingsEvent() *Settings

func (*UpdateEvents) GetTypingEvent

func (x *UpdateEvents) GetTypingEvent() *TypingEvent

func (*UpdateEvents) GetUserAlertEvent

func (x *UpdateEvents) GetUserAlertEvent() *UserAlertEvent

func (*UpdateEvents) ProtoMessage

func (*UpdateEvents) ProtoMessage()

func (*UpdateEvents) ProtoReflect

func (x *UpdateEvents) ProtoReflect() protoreflect.Message

func (*UpdateEvents) Reset

func (x *UpdateEvents) Reset()

func (*UpdateEvents) String

func (x *UpdateEvents) String() string

type UpdateEvents_AccountChange

type UpdateEvents_AccountChange struct {
	// ParticipantsEvent participantsEvent = 8;
	// ConversationTypeEvent conversationTypeEvent = 9;
	// FavoriteStickersEvent favoriteStickersEvent = 10;
	// RecentStickerEvent recentStickerEvent = 11;
	// CloudStoreInfoEvent cloudStoreInfoEvent = 12;
	// BlobForAttachmentProgressUpdate blobForAttachmentProgressUpdate = 13;
	AccountChange *AccountChangeOrSomethingEvent `protobuf:"bytes,15,opt,name=accountChange,proto3,oneof"`
}

type UpdateEvents_BrowserPresenceCheckEvent

type UpdateEvents_BrowserPresenceCheckEvent struct {
	BrowserPresenceCheckEvent *BrowserPresenceCheckEvent `protobuf:"bytes,7,opt,name=browserPresenceCheckEvent,proto3,oneof"`
}

type UpdateEvents_ConversationEvent

type UpdateEvents_ConversationEvent struct {
	ConversationEvent *ConversationEvent `protobuf:"bytes,2,opt,name=conversationEvent,proto3,oneof"`
}

type UpdateEvents_MessageEvent

type UpdateEvents_MessageEvent struct {
	MessageEvent *MessageEvent `protobuf:"bytes,3,opt,name=messageEvent,proto3,oneof"`
}

type UpdateEvents_SettingsEvent

type UpdateEvents_SettingsEvent struct {
	SettingsEvent *Settings `protobuf:"bytes,5,opt,name=settingsEvent,proto3,oneof"`
}

type UpdateEvents_TypingEvent

type UpdateEvents_TypingEvent struct {
	TypingEvent *TypingEvent `protobuf:"bytes,4,opt,name=typingEvent,proto3,oneof"`
}

type UpdateEvents_UserAlertEvent

type UpdateEvents_UserAlertEvent struct {
	UserAlertEvent *UserAlertEvent `protobuf:"bytes,6,opt,name=userAlertEvent,proto3,oneof"`
}

type UploadMediaResponse

type UploadMediaResponse struct {
	Media   *UploadedMedia `protobuf:"bytes,1,opt,name=media,proto3" json:"media,omitempty"`
	Message string         `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadMediaResponse) Descriptor deprecated

func (*UploadMediaResponse) Descriptor() ([]byte, []int)

Deprecated: Use UploadMediaResponse.ProtoReflect.Descriptor instead.

func (*UploadMediaResponse) GetMedia

func (x *UploadMediaResponse) GetMedia() *UploadedMedia

func (*UploadMediaResponse) GetMessage

func (x *UploadMediaResponse) GetMessage() string

func (*UploadMediaResponse) ProtoMessage

func (*UploadMediaResponse) ProtoMessage()

func (*UploadMediaResponse) ProtoReflect

func (x *UploadMediaResponse) ProtoReflect() protoreflect.Message

func (*UploadMediaResponse) Reset

func (x *UploadMediaResponse) Reset()

func (*UploadMediaResponse) String

func (x *UploadMediaResponse) String() string

type UploadedMedia

type UploadedMedia struct {
	MediaID     string `protobuf:"bytes,1,opt,name=mediaID,proto3" json:"mediaID,omitempty"`
	MediaNumber int64  `protobuf:"varint,2,opt,name=mediaNumber,proto3" json:"mediaNumber,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadedMedia) Descriptor deprecated

func (*UploadedMedia) Descriptor() ([]byte, []int)

Deprecated: Use UploadedMedia.ProtoReflect.Descriptor instead.

func (*UploadedMedia) GetMediaID

func (x *UploadedMedia) GetMediaID() string

func (*UploadedMedia) GetMediaNumber

func (x *UploadedMedia) GetMediaNumber() int64

func (*UploadedMedia) ProtoMessage

func (*UploadedMedia) ProtoMessage()

func (*UploadedMedia) ProtoReflect

func (x *UploadedMedia) ProtoReflect() protoreflect.Message

func (*UploadedMedia) Reset

func (x *UploadedMedia) Reset()

func (*UploadedMedia) String

func (x *UploadedMedia) String() string

type User

type User struct {
	Field1 int64  `protobuf:"varint,1,opt,name=field1,proto3" json:"field1,omitempty"`
	Number string `protobuf:"bytes,2,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated

func (*User) Descriptor() ([]byte, []int)

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetField1

func (x *User) GetField1() int64

func (*User) GetNumber

func (x *User) GetNumber() string

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect

func (x *User) ProtoReflect() protoreflect.Message

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

type UserAlertEvent

type UserAlertEvent struct {
	AlertType AlertType `protobuf:"varint,2,opt,name=alertType,proto3,enum=events.AlertType" json:"alertType,omitempty"`
	// contains filtered or unexported fields
}

func (*UserAlertEvent) Descriptor deprecated

func (*UserAlertEvent) Descriptor() ([]byte, []int)

Deprecated: Use UserAlertEvent.ProtoReflect.Descriptor instead.

func (*UserAlertEvent) GetAlertType

func (x *UserAlertEvent) GetAlertType() AlertType

func (*UserAlertEvent) ProtoMessage

func (*UserAlertEvent) ProtoMessage()

func (*UserAlertEvent) ProtoReflect

func (x *UserAlertEvent) ProtoReflect() protoreflect.Message

func (*UserAlertEvent) Reset

func (x *UserAlertEvent) Reset()

func (*UserAlertEvent) String

func (x *UserAlertEvent) String() string

type WebAuthKey

type WebAuthKey struct {
	WebAuthKey []byte `protobuf:"bytes,1,opt,name=webAuthKey,proto3" json:"webAuthKey,omitempty"`
	ValidFor   int64  `protobuf:"varint,2,opt,name=validFor,proto3" json:"validFor,omitempty"`
	// contains filtered or unexported fields
}

func (*WebAuthKey) Descriptor deprecated

func (*WebAuthKey) Descriptor() ([]byte, []int)

Deprecated: Use WebAuthKey.ProtoReflect.Descriptor instead.

func (*WebAuthKey) GetValidFor

func (x *WebAuthKey) GetValidFor() int64

func (*WebAuthKey) GetWebAuthKey

func (x *WebAuthKey) GetWebAuthKey() []byte

func (*WebAuthKey) ProtoMessage

func (*WebAuthKey) ProtoMessage()

func (*WebAuthKey) ProtoReflect

func (x *WebAuthKey) ProtoReflect() protoreflect.Message

func (*WebAuthKey) Reset

func (x *WebAuthKey) Reset()

func (*WebAuthKey) String

func (x *WebAuthKey) String() string

type WebEncryptionKeyResponse

type WebEncryptionKeyResponse struct {
	Coordinates *CoordinateMessage `protobuf:"bytes,1,opt,name=coordinates,proto3" json:"coordinates,omitempty"`
	Key         []byte             `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*WebEncryptionKeyResponse) Descriptor deprecated

func (*WebEncryptionKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use WebEncryptionKeyResponse.ProtoReflect.Descriptor instead.

func (*WebEncryptionKeyResponse) GetCoordinates

func (x *WebEncryptionKeyResponse) GetCoordinates() *CoordinateMessage

func (*WebEncryptionKeyResponse) GetKey

func (x *WebEncryptionKeyResponse) GetKey() []byte

func (*WebEncryptionKeyResponse) ProtoMessage

func (*WebEncryptionKeyResponse) ProtoMessage()

func (*WebEncryptionKeyResponse) ProtoReflect

func (x *WebEncryptionKeyResponse) ProtoReflect() protoreflect.Message

func (*WebEncryptionKeyResponse) Reset

func (x *WebEncryptionKeyResponse) Reset()

func (*WebEncryptionKeyResponse) String

func (x *WebEncryptionKeyResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL