Skip to content

Commit

Permalink
fixed batch_id type (string)
Browse files Browse the repository at this point in the history
  • Loading branch information
testica committed Jun 30, 2017
1 parent b29d1c6 commit 510635a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ declare namespace SendGrid.Helpers.Mail {
setSendAt(sendAt: number): void;
getSendAt(): number;

setBatchId(batch_id: number): void;
getBatchId(): number;
setBatchId(batch_id: string): void;
getBatchId(): string;

setAsm(asm: Asm): void;
getAsm(): Asm;
Expand Down Expand Up @@ -91,7 +91,7 @@ declare namespace SendGrid.Helpers.Mail {
categories: any[];
custom_args: any[];
send_at: number;
batch_id: number;
batch_id: string;
asm: any;
ip_pool_name: string;
mail_settings: any;
Expand Down

0 comments on commit 510635a

Please sign in to comment.