/** * 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 TweetRuleActionDto */ export interface TweetRuleActionDto extends RuleActionDto { /** * The generated access token. * @type {string} * @memberof TweetRuleActionDto */ accessToken: string; /** * The generated access secret. * @type {string} * @memberof TweetRuleActionDto */ accessSecret: string; /** * The text that is sent as tweet to twitter. * @type {string} * @memberof TweetRuleActionDto */ text: string; } /** * Check if a given object implements the TweetRuleActionDto interface. */ export declare function instanceOfTweetRuleActionDto(value: any): value is TweetRuleActionDto; export declare function TweetRuleActionDtoFromJSON(json: any): TweetRuleActionDto; export declare function TweetRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): TweetRuleActionDto; export declare function TweetRuleActionDtoToJSON(value?: TweetRuleActionDto | null, _ignoreDiscriminator?: boolean): any;