Skip to content

Commit

Permalink
Merge branch 'master' into feature/GSYE-810
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdiedrich authored Dec 17, 2024
2 parents 74fbf3d + 9510fa7 commit 234ac1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions gsy_framework/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class BidOfferMatchAlgoEnum(Enum):
class SpotMarketTypeEnum(Enum):
"""Types of markets supported by the GSY exchange."""

NO_MARKET = 0
ONE_SIDED = 1
TWO_SIDED = 2
COEFFICIENTS = 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
]},
{"name": "buying_rate_profile_uuid", "type": ["null", "string"]},
{"name": "energy_rate_profile_uuid", "type": ["null", "string"]},
{"name": "allow_external_connection", "type": "boolean"},
{"name": "allow_external_connection", "type": ["null", "boolean"]},
{"name": "display_type", "type": "string"},
{"name": "energy_sell_rate", "type": "float"},
{"name": "energy_buy_rate", "type": "float"}
Expand All @@ -91,7 +91,7 @@
"items": "float"
}
]},
{"name": "allow_external_connection", "type": "boolean"},
{"name": "allow_external_connection", "type": ["null", "boolean"]},
{"name": "display_type", "type": "string"},
{"name": "energy_rate", "type": "float"}
]
Expand All @@ -111,7 +111,7 @@
"items": "float"
}
]},
{"name": "allow_external_connection", "type": "boolean"},
{"name": "allow_external_connection", "type": ["null", "boolean"]},
{"name": "display_type", "type": "string"},
{"name": "energy_rate", "type": "float"},
{"name": "max_available_power_kW", "type": "float"}
Expand All @@ -132,7 +132,7 @@
"items": "float"
}
]},
{"name": "allow_external_connection", "type": "boolean"},
{"name": "allow_external_connection", "type": ["null", "boolean"]},
{"name": "display_type", "type": "string"},
{"name": "energy_rate", "type": "float"},
{"name": "energy_rate_profile", "type": [
Expand Down

0 comments on commit 234ac1e

Please sign in to comment.