/** * 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. */ /** * * @export * @interface AllContentsByPostDto */ export interface AllContentsByPostDto { /** * The list of ids to query. * @type {Array} * @memberof AllContentsByPostDto */ ids?: Array | null; /** * The start of the schedule. * @type {Date} * @memberof AllContentsByPostDto */ scheduledFrom?: Date | null; /** * The end of the schedule. * @type {Date} * @memberof AllContentsByPostDto */ scheduledTo?: Date | null; /** * The ID of the referencing content item. * @type {string} * @memberof AllContentsByPostDto */ referencing?: string | null; /** * The ID of the reference content item. * @type {string} * @memberof AllContentsByPostDto */ references?: string | null; /** * The optional odata query. * @type {string} * @memberof AllContentsByPostDto */ oData?: string | null; /** * The optional json query. * @type {any} * @memberof AllContentsByPostDto */ q?: any | null; } /** * Check if a given object implements the AllContentsByPostDto interface. */ export declare function instanceOfAllContentsByPostDto(value: any): value is AllContentsByPostDto; export declare function AllContentsByPostDtoFromJSON(json: any): AllContentsByPostDto; export declare function AllContentsByPostDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AllContentsByPostDto; export declare function AllContentsByPostDtoToJSON(value?: AllContentsByPostDto | null, _ignoreDiscriminator?: boolean): any;