/**
 * Copyright(c) Microsoft Corporation.All rights reserved.
 * Licensed under the MIT License.
 */

/**
 * Represents the response from a conversation resource operation.
 */
export interface ConversationResourceResponse {
  /**
   * The ID of the activity.
   */
  activityId: string;
  /**
   * The service URL.
   */
  serviceUrl: string;
  /**
   * The ID of the conversation resource.
   */
  id: string;
}
