/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.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 type { RuleActionDto } from './RuleActionDto'; /** * * @export * @interface MediumRuleActionDto */ export interface MediumRuleActionDto extends RuleActionDto { /** * The self issued access token. * @type {string} * @memberof MediumRuleActionDto */ accessToken: string; /** * The title, used for the url. * @type {string} * @memberof MediumRuleActionDto */ title: string; /** * The content, either html or markdown. * @type {string} * @memberof MediumRuleActionDto */ content: string; /** * The original home of this content, if it was originally published elsewhere. * @type {string} * @memberof MediumRuleActionDto */ canonicalUrl?: string | null; /** * The optional comma separated list of tags. * @type {string} * @memberof MediumRuleActionDto */ tags?: string | null; /** * Optional publication id. * @type {string} * @memberof MediumRuleActionDto */ publicationId?: string | null; /** * Indicates whether the content is markdown or html. * @type {boolean} * @memberof MediumRuleActionDto */ isHtml: boolean; } /** * Check if a given object implements the MediumRuleActionDto interface. */ export declare function instanceOfMediumRuleActionDto(value: any): value is MediumRuleActionDto; export declare function MediumRuleActionDtoFromJSON(json: any): MediumRuleActionDto; export declare function MediumRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): MediumRuleActionDto; export declare function MediumRuleActionDtoToJSON(value?: MediumRuleActionDto | null, _ignoreDiscriminator?: boolean): any;