@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
33 lines • 908 B
TypeScript
import { RenewType } from '../service/RenewType';
import { RenewalTypeEnum } from '../service/RenewalTypeEnum';
import { StateEnum } from '../service/StateEnum';
/** Details about a Service */
export interface Service {
    /** Indicates that the service can be set up to be deleted at expiration */
    canDeleteAtExpiration: boolean;
    /**  */
    contactAdmin: string;
    /**  */
    contactBilling: string;
    /**  */
    contactTech: string;
    /**  */
    creation: string;
    /**  */
    domain: string;
    /**  */
    engagedUpTo?: string;
    /**  */
    expiration: string;
    /** All the possible renew period of your service in month */
    possibleRenewPeriod?: number[];
    /** Way of handling the renew */
    renew?: RenewType;
    /**  */
    renewalType: RenewalTypeEnum;
    /**  */
    serviceId: number;
    /**  */
    status: StateEnum;
}
//# sourceMappingURL=Service.d.ts.map