Type alias AllocationUpdateDTO

AllocationUpdateDTO: {
    deposit?: {
        validate?: Record<string, any>;
    };
    timeout?: string;
    totalAmount?: string;
}

AllocationUpdate represents the changes that can be made to an existing allocation.

Type declaration

  • Optional deposit?: {
        validate?: Record<string, any>;
    }
    • Optional validate?: Record<string, any>
  • Optional timeout?: string
  • Optional totalAmount?: string