Skip to content

Commit

Permalink
Fix discrepancies from documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
asein-sinch committed May 6, 2024
1 parent 13a402a commit 182d986
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ export interface SipEndpoint {
/** The date and time that the SIP endpoint was created. */
createTime?: Date;
/** The date and time that the SIP endpoint was last modified. */
updateTime?: Date;
updateTime?: Date | null;
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface SipTrunk {
/** The date and time that the SIP trunk was created. */
createTime?: Date;
/** The date and time that the SIP trunk was last modified. */
updateTime?: Date;
updateTime?: Date | null;
/** The ID of the account. */
projectId?: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class SipTrunksApi extends ElasticSipTrunkingDomainApi {
pagination: PaginationEnum.PAGE2,
apiName: this.apiName,
operationId: 'GetSipTrunks',
dataKey: 'sipTrunks',
dataKey: 'trunks',
};

// Create the promise containing the response wrapped as a PageResult
Expand Down

0 comments on commit 182d986

Please sign in to comment.