@standard-crypto/farcaster-js-warpcast
Version:
A tool for interacting with the private APIs of the Warpcast client.
33 lines (32 loc) • 835 B
TypeScript
/**
* Warpcast API
* Private API used by the Warpcast client
*
* The version of the OpenAPI document: 1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { ConversationDetails } from './conversation-details.js';
import { Pagination } from './pagination.js';
/**
*
* @export
* @interface V2DirectCastConversationDetailsGet200Response
*/
export interface V2DirectCastConversationDetailsGet200Response {
/**
*
* @type {ConversationDetails}
* @memberof V2DirectCastConversationDetailsGet200Response
*/
'result': ConversationDetails;
/**
*
* @type {Pagination}
* @memberof V2DirectCastConversationDetailsGet200Response
*/
'next'?: Pagination;
}