UNPKG

whalecloud-dxp-api-react-native

Version:

This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr

41 lines (37 loc) 1.17 kB
/* tslint:disable */ /* eslint-disable */ /** * DXP API * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { PhoneAgreementForQuery } from './phone-agreement-for-query'; import { PlanAgreementForQuery } from './plan-agreement-for-query'; /** * A container for the main data payload in a response. This can be any data type and typically includes the core information returned by the API. * * @export * @interface QueryAgreementInstantRespData */ export interface QueryAgreementInstantRespData { /** * List of plan agreements. * * @type {Array<PlanAgreementForQuery> & any} * @memberof QueryAgreementInstantRespData */ planAgreementList?: Array<PlanAgreementForQuery> & any; /** * List of phone agreements. * * @type {Array<PhoneAgreementForQuery>} * @memberof QueryAgreementInstantRespData */ phoneAgreementList?: Array<PhoneAgreementForQuery>; }