Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import EasyPostObject from './easypost_object';
* @extends EasyPostObject
*/
export default class CarrierAccount extends EasyPostObject {
static billing_type;
static clone;
static credentials;
static description;
static fields;
static readable;
static reference;
static test_credentials;
declare billing_type?: string | null;
declare clone?: boolean | null;
declare credentials?: object | null;
declare description?: string | null;
declare fields?: Record<string, unknown> | null;
declare readable?: string | null;
declare reference?: string | null;
declare test_credentials?: object | null;
}
4 changes: 2 additions & 2 deletions src/models/carrier_type.js → src/models/carrier_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import EasyPostObject from './easypost_object';
* @extends EasyPostObject
*/
export default class CarrierType extends EasyPostObject {
static fields;
static type;
declare fields?: Record<string, unknown> | null;
declare type?: string | null;
}