/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 ForeignStoreConfigDto */ export interface ForeignStoreConfigDto { /** * The name of the data type * @type {string} * @memberof ForeignStoreConfigDto */ dataType: string; /** * The name of the data feature * @type {string} * @memberof ForeignStoreConfigDto */ dataFeature: string; /** * Filter query for the foreign store * @type {string} * @memberof ForeignStoreConfigDto */ storeQuery?: string; /** * The property name of the foreign property that holds the start date * @type {string} * @memberof ForeignStoreConfigDto */ startDateProperty: string; /** * The property name of the foreign property that holds the end date * @type {string} * @memberof ForeignStoreConfigDto */ endDateProperty: string; /** * The property name of the foreign property that holds the title * @type {string} * @memberof ForeignStoreConfigDto */ titleProperty: string; }