@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 494 B
TypeScript
import { Price } from '../../../order/Price';
import { ReasonCodes } from './ReasonCodes';
/** Informations about a promotion code */
export interface Capabilities {
/** Amount of the promotion code */
amount: Price;
/** True if the promotion code generation is available */
canGenerate: boolean;
/** Number of months of engagement */
engagement: number;
/** Enum of the possible errors */
reasonCodes: ReasonCodes[];
}
//# sourceMappingURL=Capabilities.d.ts.map