@signalwire/compatibility-api
Version:
SignalWire Compatibility API
44 lines (38 loc) • 1.63 kB
TypeScript
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
import Trusthub = require('../Trusthub');
import Version = require('../../base/Version');
import { CustomerProfilesList } from './v1/customerProfiles';
import { CustomerProfilesListInstance } from './v1/customerProfiles';
import { EndUserList } from './v1/endUser';
import { EndUserListInstance } from './v1/endUser';
import { EndUserTypeList } from './v1/endUserType';
import { EndUserTypeListInstance } from './v1/endUserType';
import { PoliciesList } from './v1/policies';
import { PoliciesListInstance } from './v1/policies';
import { SupportingDocumentList } from './v1/supportingDocument';
import { SupportingDocumentListInstance } from './v1/supportingDocument';
import { SupportingDocumentTypeList } from './v1/supportingDocumentType';
import { SupportingDocumentTypeListInstance } from './v1/supportingDocumentType';
import { TrustProductsList } from './v1/trustProducts';
import { TrustProductsListInstance } from './v1/trustProducts';
declare class V1 extends Version {
/**
* Initialize the V1 version of Trusthub
*
* @param domain - The twilio domain
*/
constructor(domain: Trusthub);
readonly customerProfiles: CustomerProfilesListInstance;
readonly endUserTypes: EndUserTypeListInstance;
readonly endUsers: EndUserListInstance;
readonly policies: PoliciesListInstance;
readonly supportingDocumentTypes: SupportingDocumentTypeListInstance;
readonly supportingDocuments: SupportingDocumentListInstance;
readonly trustProducts: TrustProductsListInstance;
}
export = V1;