@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
27 lines (26 loc) • 1.18 kB
TypeScript
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.22
* Contact: contact@emergentmethods.ai
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Offset for pagination. The n_articles is your page size, while your offset is the number of articles to skip to get to your page of interest. For example, if you want to get page 3 for n_article page size of 10, you would set offset to 20.
* @export
* @interface Offset
*/
export interface Offset {
}
/**
* Check if a given object implements the Offset interface.
*/
export declare function instanceOfOffset(value: object): value is Offset;
export declare function OffsetFromJSON(json: any): Offset;
export declare function OffsetFromJSONTyped(json: any, ignoreDiscriminator: boolean): Offset;
export declare function OffsetToJSON(json: any): Offset;
export declare function OffsetToJSONTyped(value?: Offset | null, ignoreDiscriminator?: boolean): any;