@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
27 lines • 851 B
TypeScript
import { Price } from '../../../order/Price';
import { SubObject } from './movement/SubObject';
import { TypeEnum } from './movement/TypeEnum';
/** Missing description */
export interface Movement {
    /** Movement amount */
    amount: Price;
    /** Balance name */
    balanceName: string;
    /** Movement creation date */
    creationDate: string;
    /** Object destination of this credit movement */
    destinationObject?: SubObject;
    /** Movement expiration date */
    expirationDate?: string;
    /** Movement last update */
    lastUpdate: string;
    /** Movement ID */
    movementId: number;
    /** Order ID associated to this credit movement */
    orderId?: number;
    /** Object source of this credit movement */
    sourceObject: SubObject;
    /** Movement type */
    type: TypeEnum;
}
//# sourceMappingURL=Movement.d.ts.map