From 9a970c0e67d4d63dfc90681d700f3fa1fb7434e5 Mon Sep 17 00:00:00 2001 From: Thijs Kuipers Date: Fri, 8 May 2015 23:51:49 +0200 Subject: [PATCH] Fix optional properties of CreateTapePrintParamsXmlParams --- dymo-label-framework/dymo-label-framework.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dymo-label-framework/dymo-label-framework.d.ts b/dymo-label-framework/dymo-label-framework.d.ts index 88b87e431b..b3209e15c1 100644 --- a/dymo-label-framework/dymo-label-framework.d.ts +++ b/dymo-label-framework/dymo-label-framework.d.ts @@ -171,15 +171,15 @@ declare module dymo.label.framework { interface CreateTapePrintParamsXmlParams { /** The number of copies to print. */ - copies: number; + copies?: number; /** The print job title/description. */ - jobTitle: string; + jobTitle?: string; /** The direction of the label content on the label (left-to-right or right-to-left). Use the dymo.label.framework.FlowDirection enumeration to specify the value. */ - flowDirection: FlowDirection; + flowDirection?: FlowDirection; /** The label alignment on the tape. Use the dymo.label.framework.TapeAlignment enumeration to specify the value. */ - alignment: TapeAlignment; + alignment?: TapeAlignment; /** The cut mode (if auto-cut is supported by the printer). Use the dymo.label.framework.TapeCutMode enumeration to specify the value. */ - cutMode: TapeCutMode; + cutMode?: TapeCutMode; } /**