Skip to content

Commit

Permalink
fix TS list instance import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Harrison committed Apr 6, 2020
1 parent 6802092 commit b75f722
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/rest/api/v2010/account/sip/credentialList.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Page = require('../../../../../base/Page');
import Response = require('../../../../../http/response');
import V2010 = require('../../../V2010');
import { CredentialList } from './credentialList/credential';
import { CredentialListInstance } from './credentialList/credential';
import { CredentialListInstance as CredentialListInstanceImport } from './credentialList/credential';
import { SerializableClass } from '../../../../../interfaces';

/**
Expand Down Expand Up @@ -243,7 +243,7 @@ declare class CredentialListContext {
*/
constructor(version: V2010, accountSid: string, sid: string);

credentials: CredentialListInstance;
credentials: CredentialListInstanceImport;
/**
* fetch a CredentialListInstance
*
Expand Down Expand Up @@ -286,7 +286,7 @@ declare class CredentialListInstance extends SerializableClass {
/**
* Access the credentials
*/
credentials(): CredentialListInstance;
credentials(): CredentialListInstanceImport;
dateCreated: Date;
dateUpdated: Date;
/**
Expand Down

0 comments on commit b75f722

Please sign in to comment.