/** * 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. */ /** * * @export * @interface BxResponseMetadata */ export interface BxResponseMetadata { /** * Status Code * @type {string} * @memberof BxResponseMetadata */ statusCode?: string | null; /** * Status Description * @type {string} * @memberof BxResponseMetadata */ statusDescription?: string | null; /** * Response Type * @type {string} * @memberof BxResponseMetadata */ responseType?: string | null; /** * Page Count * @type {number} * @memberof BxResponseMetadata */ pageCount?: number | null; /** * Page Number * @type {number} * @memberof BxResponseMetadata */ page?: number | null; /** * Page Size * @type {number} * @memberof BxResponseMetadata */ pageSize?: number | null; }