@lob/lob-typescript-sdk
Version:
Lob API wrapper
65 lines (64 loc) • 1.81 kB
TypeScript
/**
* Lob
* The Lob API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and uses HTTP response codes to indicate any API errors. <p> Looking for our [previous documentation](https://lob.github.io/legacy-docs/)?
*
* The version of the OpenAPI document: 1.3.0
* Contact: lob-openapi@lob.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 { Address } from "./address";
/**
*
* @export
* @class AddressList
*/
export declare class AddressList {
constructor(input?: any);
/**
* list of addresses
* @type {Array<Address>}
* @memberof AddressList
*/
"data"?: Array<Address>;
/**
* Value is type of resource.
* @type {string}
* @memberof AddressList
*/
"object"?: string;
/**
* url of next page of items in list.
* @type {string}
* @memberof AddressList
*/
"next_url"?: string | null;
get nextPageToken(): string | undefined;
/**
* url of previous page of items in list.
* @type {string}
* @memberof AddressList
*/
"previous_url"?: string | null;
get previousPageToken(): string | undefined;
/**
* number of resources in a set
* @type {number}
* @memberof AddressList
*/
"count"?: number;
/**
* indicates the total number of records. Provided when the request specifies an \"include\" query parameter
* @type {number}
* @memberof AddressList
*/
"total_count"?: number;
toJSON(): {};
}
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/