Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.account.mt4.MT4AccountOrderDTO
Packages that use MT4AccountOrderDTO
Package
Description
Contains classes that implement DTO representations of entities related to MT4 data.
-
Uses of MT4AccountOrderDTO in com.bluebell.greenhouse.platform.models.api.dto.account.mt4
Methods in com.bluebell.greenhouse.platform.models.api.dto.account.mt4 that return types with arguments of type MT4AccountOrderDTOModifier and TypeMethodDescription@Valid @ConvertGroup(from=jakarta.validation.groups.Default.class,to=MT4PositionOrderValidation.class) List<@NotNull MT4AccountOrderDTO> MT4AccountPositionDataDTO.activePositions()Returns the value of theactivePositionsrecord component.@Valid @ConvertGroup(from=jakarta.validation.groups.Default.class,to=MT4PositionOrderValidation.class) List<@NotNull MT4AccountOrderDTO> MT4AccountPositionDataDTO.closedPositions()Returns the value of theclosedPositionsrecord component.@Valid List<@NotNull MT4AccountOrderDTO> MT4AccountPositionDataDTO.transactions()Returns the value of thetransactionsrecord component.Constructor parameters in com.bluebell.greenhouse.platform.models.api.dto.account.mt4 with type arguments of type MT4AccountOrderDTOModifierConstructorDescriptionMT4AccountPositionDataDTO(@NotBlank @Size(max=75) String user, @NotBlank @Size(max=75) String account, @NotBlank @Size(max=75) String broker, @Size(max=255) String strategyReferenceCode, @Valid @ConvertGroup(from=jakarta.validation.groups.Default.class,to=MT4PositionOrderValidation.class) List<@NotNull MT4AccountOrderDTO> activePositions, @Valid @ConvertGroup(from=jakarta.validation.groups.Default.class,to=MT4PositionOrderValidation.class) List<@NotNull MT4AccountOrderDTO> closedPositions, @Valid List<@NotNull MT4AccountOrderDTO> transactions) Creates an instance of aMT4AccountPositionDataDTOrecord class.