@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
48 lines (47 loc) • 1.36 kB
TypeScript
/**
* Neynar API
* The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 3.175.0
* Contact: team@neynar.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface GetConversationMessages200ResponseMessagesInner {
/**
* Conversation ID
*/
'conversation_id': string;
/**
* Creation timestamp
*/
'created_at': string;
/**
* Message ID
*/
'id': string;
/**
* Message content
*/
'message': string;
/**
* Message origin
*/
'origin': GetConversationMessages200ResponseMessagesInnerOriginEnum;
/**
* Message subtype
*/
'subtype'?: string;
/**
* Message type
*/
'type'?: string;
}
export declare const GetConversationMessages200ResponseMessagesInnerOriginEnum: {
readonly User: "user";
readonly System: "system";
readonly Admin: "admin";
};
export type GetConversationMessages200ResponseMessagesInnerOriginEnum = typeof GetConversationMessages200ResponseMessagesInnerOriginEnum[keyof typeof GetConversationMessages200ResponseMessagesInnerOriginEnum];