/**
 * 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.
 */
/**
 * Rich OEmbed data
 */
export interface OembedRichData {
    /**
     * The name of the author/owner of the resource.
     */
    'author_name'?: string | null;
    /**
     * A URL for the author/owner of the resource.
     */
    'author_url'?: string | null;
    /**
     * The suggested cache lifetime for this resource, in seconds. Consumers may choose to use this value or not.
     */
    'cache_age'?: string | null;
    /**
     * The height in pixels required to display the HTML.
     */
    'height'?: number | null;
    /**
     * The HTML required to display the resource. The HTML should have no padding or margins. Consumers may wish to load the HTML in an off-domain iframe to avoid XSS vulnerabilities. The markup should be valid XHTML 1.0 Basic.
     */
    'html': string | null;
    /**
     * The name of the resource provider.
     */
    'provider_name'?: string | null;
    /**
     * The url of the resource provider.
     */
    'provider_url'?: string | null;
    /**
     * The height of the optional thumbnail. If this parameter is present, thumbnail_url and thumbnail_width must also be present.
     */
    'thumbnail_height'?: number | null;
    /**
     * A URL to a thumbnail image representing the resource. The thumbnail must respect any maxwidth and maxheight parameters. If this parameter is present, thumbnail_width and thumbnail_height must also be present.
     */
    'thumbnail_url'?: string | null;
    /**
     * The width of the optional thumbnail. If this parameter is present, thumbnail_url and thumbnail_height must also be present.
     */
    'thumbnail_width'?: number | null;
    /**
     * A text title, describing the resource.
     */
    'title'?: string | null;
    'type': OembedRichDataTypeEnum;
    'version': string | null;
    /**
     * The width in pixels required to display the HTML.
     */
    'width'?: number | null;
}
export declare const OembedRichDataTypeEnum: {
    readonly Rich: "rich";
};
export type OembedRichDataTypeEnum = typeof OembedRichDataTypeEnum[keyof typeof OembedRichDataTypeEnum];
