UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

29 lines (26 loc) 1.08 kB
import { TelephonyRmaStep } from './TelephonyRmaStep.js'; import { TelephonyContact } from './TelephonyContact.js'; import { TelephonyRmaOfferTypeEnum } from './TelephonyRmaOfferTypeEnum.js'; import { TelephonyRmaStatusEnum } from './TelephonyRmaStatusEnum.js'; import { TelephonyRmaTypeEnum } from './TelephonyRmaTypeEnum.js'; import { TelephonyRmaReplaceTypeEnum } from './TelephonyRmaReplaceTypeEnum.js'; import './TelephonyRmaStepStatusEnum.js'; import './TelephonyRmaStepNameEnum.js'; import './CoreTypesCountryEnum.js'; type TelephonyRma = { cancellable?: boolean; creationDatetime?: Date; equipmentReference?: string; id?: string; newMerchandise?: string | null; offerTypeNew?: TelephonyRmaOfferTypeEnum | null; offerTypeOld?: TelephonyRmaOfferTypeEnum; process?: TelephonyRmaReplaceTypeEnum; receptionDatetime?: Date | null; shippingContact?: TelephonyContact; status?: TelephonyRmaStatusEnum; steps?: TelephonyRmaStep[]; terminationDatetime?: Date | null; type?: TelephonyRmaTypeEnum; }; export { TelephonyRma };