Top |
VOICE Answer USSD responseVOICE Answer USSD response — Methods to manage the VOICE Answer USSD response. |
Collection of methods to create requests and parse responses of the VOICE Answer USSD message.
QmiMessageVoiceAnswerUssdInput *
qmi_message_voice_answer_ussd_input_new
(void
);
Allocates a new QmiMessageVoiceAnswerUssdInput.
the newly created QmiMessageVoiceAnswerUssdInput. The returned value should be freed with qmi_message_voice_answer_ussd_input_unref()
.
Since: 1.26
QmiMessageVoiceAnswerUssdInput *
qmi_message_voice_answer_ussd_input_ref
(QmiMessageVoiceAnswerUssdInput *self
);
Atomically increments the reference count of self
by one.
Since: 1.26
void
qmi_message_voice_answer_ussd_input_unref
(QmiMessageVoiceAnswerUssdInput *self
);
Atomically decrements the reference count of self
by one.
If the reference count drops to 0, self
is completely disposed.
Since: 1.26
gboolean qmi_message_voice_answer_ussd_input_get_uss_data (QmiMessageVoiceAnswerUssdInput *self
,QmiVoiceUssDataCodingScheme *value_uss_data_data_coding_scheme
,GArray **value_uss_data_data
,GError **error
);
Get the 'USS Data' field from self
.
self |
||
value_uss_data_data_coding_scheme |
a placeholder for the output QmiVoiceUssDataCodingScheme, or |
[out][optional] |
value_uss_data_data |
a placeholder for the output GArray of guint8 elements, or |
[out][optional][element-type guint8][transfer none] |
error |
Return location for error or |
Since: 1.26
gboolean qmi_message_voice_answer_ussd_input_set_uss_data (QmiMessageVoiceAnswerUssdInput *self
,QmiVoiceUssDataCodingScheme value_uss_data_data_coding_scheme
,GArray *value_uss_data_data
,GError **error
);
Set the 'USS Data' field in the message.
self |
||
value_uss_data_data_coding_scheme |
||
value_uss_data_data |
a GArray of guint8 elements. A new reference to |
[in][element-type guint8][transfer none] |
error |
Return location for error or |
Since: 1.26
QmiMessageVoiceAnswerUssdOutput *
qmi_message_voice_answer_ussd_output_ref
(QmiMessageVoiceAnswerUssdOutput *self
);
Atomically increments the reference count of self
by one.
Since: 1.26
void
qmi_message_voice_answer_ussd_output_unref
(QmiMessageVoiceAnswerUssdOutput *self
);
Atomically decrements the reference count of self
by one.
If the reference count drops to 0, self
is completely disposed.
Since: 1.26
gboolean qmi_message_voice_answer_ussd_output_get_result (QmiMessageVoiceAnswerUssdOutput *self
,GError **error
);
Get the result of the QMI operation.
Since: 1.26
QmiMessageVoiceAnswerUssdOutput * qmi_message_voice_answer_ussd_response_parse (QmiMessage *message
,GError **error
);
Parses a QmiMessage and builds a QmiMessageVoiceAnswerUssdOutput out of it. The operation fails if the message is of the wrong type.
a QmiMessageVoiceAnswerUssdOutput, or NULL
if error
is set. The returned value should be freed with qmi_message_voice_answer_ussd_output_unref()
.
Since: 1.34
void qmi_client_voice_answer_ussd (QmiClientVoice *self
,QmiMessageVoiceAnswerUssdInput *input
,guint timeout
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously sends a Answer USSD request to the device.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from.
You can then call qmi_client_voice_answer_ussd_finish()
to get the result of the operation.
self |
||
input |
||
timeout |
maximum time to wait for the method to complete, in seconds. |
|
cancellable |
a GCancellable or |
|
callback |
a GAsyncReadyCallback to call when the request is satisfied. |
|
user_data |
user data to pass to |
Since: 1.26
QmiMessageVoiceAnswerUssdOutput * qmi_client_voice_answer_ussd_finish (QmiClientVoice *self
,GAsyncResult *res
,GError **error
);
Finishes an async operation started with qmi_client_voice_answer_ussd()
.
self |
||
res |
the GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
a QmiMessageVoiceAnswerUssdOutput, or NULL
if error
is set. The returned value should be freed with qmi_message_voice_answer_ussd_output_unref()
.
Since: 1.26
typedef struct _QmiMessageVoiceAnswerUssdInput QmiMessageVoiceAnswerUssdInput;
The QmiMessageVoiceAnswerUssdInput structure contains private data and should only be accessed using the provided API.
Since: 1.26
typedef struct _QmiMessageVoiceAnswerUssdOutput QmiMessageVoiceAnswerUssdOutput;
The QmiMessageVoiceAnswerUssdOutput structure contains private data and should only be accessed using the provided API.
Since: 1.26