Type alias PartialDeep<T>

PartialDeep<T>: T extends object ? PartialObjectDeep<T> : T

Make all properties and nested properties in T required

Typescript's Partial helper only goes one level deep however partial for OrderCloud requests means Partial for any nested sub-model as well

Type Parameters

  • T

    represents the type whos fields and nested fields will be optional

Generated using TypeDoc