MatrixEventReceipt

MatrixEventReceipt — Class to hold m.receipt events.

Functions

Types and Values

Description

Informs the client of new receipts.

Functions

MATRIX_EVENT_TYPE_RECEIPT

#define MATRIX_EVENT_TYPE_RECEIPT (matrix_event_receipt_get_type ())

The type for MatrixEventReceipt.


matrix_event_receipt_new ()

MatrixEventReceipt *
matrix_event_receipt_new (void);

matrix_event_receipt_get_room_id ()

const gchar *
matrix_event_receipt_get_room_id (MatrixEventReceipt *self);

Get and return the current value of the "room-id" property.

Parameters

self

the MatrixEventReceipt instance to query

 

Returns

the value of the "room-id" property


matrix_event_receipt_set_room_id ()

void
matrix_event_receipt_set_room_id (MatrixEventReceipt *self,
                                  const gchar *value);

Set the value of the "room-id" property to value .

Parameters

self

the MatrixEventReceipt instance to modify

 

value

the new value of the "room-id" property

 

Types and Values

struct MatrixEventReceipt

struct MatrixEventReceipt {
	MatrixEventBase parent_instance;
	MatrixEventReceiptPrivate * priv;
};

Class to hold m.receipt events.

Informs the client of new receipts.


struct MatrixEventReceiptClass

struct MatrixEventReceiptClass {
	MatrixEventBaseClass parent_class;
};

The class structure for MATRIX_EVENT_TYPE_RECEIPT. All the fields in this structure are private and should never be accessed directly.

Members

MatrixEventBaseClass parent_class;

the parent class structure