/** * School Reporting Systems API * School Reporting Systems. * * The version of the OpenAPI document: 1.0 * Contact: tony.henderson@elevenfiftynine.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { BxFilter } from './bx-filter'; /** * * @export * @interface BxRequestMetadata */ export interface BxRequestMetadata { /** * Application Request Action * @type {string} * @memberof BxRequestMetadata */ appAction?: string | null; /** * Application Id * @type {string} * @memberof BxRequestMetadata */ appId?: string | null; /** * Client User Id * @type {string} * @memberof BxRequestMetadata */ clientUserId?: string | null; /** * Client User Device Id * @type {string} * @memberof BxRequestMetadata */ clientUserDeviceId?: string | null; /** * Client User Location * @type {string} * @memberof BxRequestMetadata */ clientUserLocation?: string | null; /** * RequestType * @type {string} * @memberof BxRequestMetadata */ requestType?: string | null; /** * Page Count * @type {number} * @memberof BxRequestMetadata */ pageCount?: number | null; /** * Page Number * @type {number} * @memberof BxRequestMetadata */ page?: number | null; /** * Page Size * @type {number} * @memberof BxRequestMetadata */ pageSize?: number | null; /** * * @type {BxFilter} * @memberof BxRequestMetadata */ filter?: BxFilter; }