v1ConvaiConversationGetSignedUrlGet2 method

  1. @deprecated
Future<Response<ConversationSignedUrlResponseModel>> v1ConvaiConversationGetSignedUrlGet2({
  1. required String? agentId,
  2. String? xiApiKey,
})

Get Signed Url @param agent_id The id of the agent you're taking the action on. @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

@deprecated
Future<chopper.Response<ConversationSignedUrlResponseModel>>
v1ConvaiConversationGetSignedUrlGet2({
  required String? agentId,
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    ConversationSignedUrlResponseModel,
    () => ConversationSignedUrlResponseModel.fromJsonFactory,
  );

  return _v1ConvaiConversationGetSignedUrlGet(
    agentId: agentId,
    xiApiKey: xiApiKey?.toString(),
  );
}