/** * _InventorySchedule shape */ export interface _InventorySchedule { /** *
Specifies how frequently inventory results are produced.
*/ Frequency: "Daily" | "Weekly" | string; } export declare type _UnmarshalledInventorySchedule = _InventorySchedule;