@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
67 lines (66 loc) • 2.17 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.
*/
import type { HtmlMetadataOembed } from './html-metadata-oembed';
import type { ImageObject } from './image-object';
import type { VideoObject } from './video-object';
export interface HtmlMetadata {
'favicon'?: string;
'modifiedTime'?: string;
'oembed'?: HtmlMetadataOembed;
'ogArticleAuthor'?: string;
'ogArticleExpirationTime'?: string;
'ogArticleModifiedTime'?: string;
'ogArticlePublishedTime'?: string;
'ogArticlePublisher'?: string;
'ogArticleSection'?: string;
'ogArticleTag'?: string;
'ogAudio'?: string;
'ogAudioSecureURL'?: string;
'ogAudioType'?: string;
'ogAudioURL'?: string;
'ogAvailability'?: string;
'ogDate'?: string;
'ogDescription'?: string;
'ogDeterminer'?: string;
'ogEpisode'?: string;
'ogImage'?: Array<ImageObject>;
'ogLocale'?: string;
'ogLocaleAlternate'?: string;
'ogLogo'?: string;
'ogMovie'?: string;
'ogPriceAmount'?: string;
'ogPriceCurrency'?: string;
'ogProductAvailability'?: string;
'ogProductCondition'?: string;
'ogProductPriceAmount'?: string;
'ogProductPriceCurrency'?: string;
'ogProductRetailerItemId'?: string;
'ogSiteName'?: string;
'ogTitle'?: string;
'ogType'?: string;
'ogUrl'?: string;
'ogVideo'?: Array<VideoObject>;
'ogVideoActor'?: string;
'ogVideoActorId'?: string;
'ogVideoActorRole'?: string;
'ogVideoDirector'?: string;
'ogVideoDuration'?: string;
'ogVideoOther'?: string;
'ogVideoReleaseDate'?: string;
'ogVideoSecureURL'?: string;
'ogVideoSeries'?: string;
'ogVideoTag'?: string;
'ogVideoTvShow'?: string;
'ogVideoWriter'?: string;
'ogWebsite'?: string;
'updatedTime'?: string;
}