Skip to content

Commit

Permalink
Merge pull request #399 from zoitravel/batchId-type
Browse files Browse the repository at this point in the history
Fix `batch_id` type
  • Loading branch information
thinkingserious authored Jun 30, 2017
2 parents b29d1c6 + 510635a commit d2235a0
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 d2235a0

Please sign in to comment.