Struct

PurpleProtocolChatEntry

Description [src]

struct PurpleProtocolChatEntry {
  const char* label;
  const char* identifier;
  gboolean required;
  gboolean is_int;
  int min;
  int max;
  gboolean secret;
}

Represents an entry containing information that must be supplied by the user when joining a chat.

Structure members
label

User-friendly name of the entry.

identifier

Used by the protocol to identify the option.

required

True if it’s required.

is_int

True if the entry expects an integer.

min

Minimum value in case of integer.

max

Maximum value in case of integer.

secret

True if the entry is secret (password)