pub type ApplicationConversationCreateResponse = ApplicationEnvelope<ApplicationConversationCreateData>;Expand description
Response returned after creating an application conversation.
Aliased Type§
pub struct ApplicationConversationCreateResponse {
pub data: ApplicationConversationCreateData,
pub code: i64,
pub message: String,
pub timestamp: i64,
}Fields§
§data: ApplicationConversationCreateDataEndpoint-specific response payload.
code: i64Business status code (200 indicates success).
message: StringHuman-readable business status message.
timestamp: i64Server response timestamp.