Skip to content
Merged
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
2 changes: 1 addition & 1 deletion models/check-editable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class CheckEditable {
* @type {any}
* @memberof CheckEditable
*/
"logo"?: any;
"logo"?: any | null;

/**
* The artwork to use on the bottom of the check page. Notes: - HTML merge variables should not include delimiting whitespace. - PDF, PNG, and JPGs must be sized at 8.5\"x11\" at 300 DPI, while supplied HTML will be rendered and trimmed to fit on a 8.5\"x11\" page. - The check bottom will always be printed in black & white. - Must conform to [this template](https://s3-us-west-2.amazonaws.com/public.lob.com/assets/templates/check_bottom_template.pdf). Need more help? Consult our [HTML examples](#section/HTML-Examples).
Expand Down
2 changes: 1 addition & 1 deletion models/letter-editable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class LetterEditable {
* @memberof LetterEditable
*/

"return_envelope"?: string | boolean;
"return_envelope"?: string | boolean | null;

/**
* Required if `return_envelope` is `true`. The number of the page that should be perforated for use with the return envelope. Must be greater than or equal to `1`. The blank page added by `address_placement=insert_blank_page` will be ignored when considering the perforated page number. To see how perforation will impact your letter design, view our [perforation guide](https://s3-us-west-2.amazonaws.com/public.lob.com/assets/templates/letter_perf_template.pdf).
Expand Down