From 8ba2caa16d600c4a51f87a825c304667513c2cb0 Mon Sep 17 00:00:00 2001 From: Ryan D McGuire Date: Wed, 27 Nov 2024 13:52:15 -0500 Subject: [PATCH] fix lying swagger spec response type --- TODO.md | 2 +- api/eiaapi_funcmap.gen.go | 10758 ++++++++++++++++++++++++++------- api/funcmapper/funcmapper.go | 39 +- pkg/eia/eia_logging.go | 6 +- pkg/eia/eia_reflection.go | 95 +- 5 files changed, 8714 insertions(+), 2186 deletions(-) diff --git a/TODO.md b/TODO.md index 7dbf425..24aad39 100644 --- a/TODO.md +++ b/TODO.md @@ -2,7 +2,7 @@ ## EIA Package -- [ ] Make reflection match a STRING type instead of the underlying type +- [x] Make reflection match a STRING type instead of the underlying type - [x] Move cmd/eia-client/internal/util/util_reflect to pkg/eia - [x] Figure out how the fuck to support multiple facets in this piece of shit fucking API spec. Seriously, amateur bullshit. diff --git a/api/eiaapi_funcmap.gen.go b/api/eiaapi_funcmap.gen.go index 466d5af..c6d0cdc 100644 --- a/api/eiaapi_funcmap.gen.go +++ b/api/eiaapi_funcmap.gen.go @@ -285,4720 +285,11172 @@ var ParseFunctionsMap = map[string]interface{}{ // List of functions in eiaapi package // with slice of arg types as strings -var FunctionParams = map[string][]string{ + +type FunctionParam struct { + Name string + Type string +} + +var FunctionParams = map[string][]FunctionParam{ "NewClient": { - "string", + { + Name: "server", + Type: "string", + }, }, "WithHTTPClient": { - "HttpRequestDoer", + { + Name: "doer", + Type: "HttpRequestDoer", + }, }, "WithRequestEditorFn": { - "RequestEditorFn", + { + Name: "fn", + Type: "RequestEditorFn", + }, }, "GetV2": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Aeo": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2AeoRoute1": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "string", + }, }, "GetV2AeoRoute1Data": { - "context.Context", - "Route1", - "*GetV2AeoRoute1DataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "params", + Type: "*GetV2AeoRoute1DataParams", + }, }, "PostV2AeoRoute1DataWithBody": { - "context.Context", - "Route1", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2AeoRoute1Data": { - "context.Context", - "Route1", - "PostV2AeoRoute1DataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "body", + Type: "PostV2AeoRoute1DataJSONRequestBody", + }, }, "GetV2AeoRoute1Facet": { - "context.Context", - "Route1", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, }, "GetV2AeoRoute1FacetFacetId": { - "context.Context", - "Route1", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Co2Emissions": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregates": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesData": { - "context.Context", - "*GetV2Co2EmissionsCo2EmissionsAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2Co2EmissionsCo2EmissionsAggregatesDataParams", + }, }, "PostV2Co2EmissionsCo2EmissionsAggregatesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2Co2EmissionsCo2EmissionsAggregatesData": { - "context.Context", - "PostV2Co2EmissionsCo2EmissionsAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2Co2EmissionsCo2EmissionsAggregatesDataJSONRequestBody", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficients": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsData": { - "context.Context", - "*GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataParams", + }, }, "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsData": { - "context.Context", - "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataJSONRequestBody", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Coal": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalAggregateProduction": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalAggregateProductionData": { - "context.Context", - "*GetV2CoalAggregateProductionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalAggregateProductionDataParams", + }, }, "PostV2CoalAggregateProductionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalAggregateProductionData": { - "context.Context", - "PostV2CoalAggregateProductionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalAggregateProductionDataJSONRequestBody", + }, }, "GetV2CoalAggregateProductionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalAggregateProductionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalConsumptionAndQuality": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalConsumptionAndQualityData": { - "context.Context", - "*GetV2CoalConsumptionAndQualityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalConsumptionAndQualityDataParams", + }, }, "PostV2CoalConsumptionAndQualityDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalConsumptionAndQualityData": { - "context.Context", - "PostV2CoalConsumptionAndQualityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalConsumptionAndQualityDataJSONRequestBody", + }, }, "GetV2CoalConsumptionAndQualityFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalConsumptionAndQualityFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalExportsImportsQuantityPrice": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalExportsImportsQuantityPriceData": { - "context.Context", - "*GetV2CoalExportsImportsQuantityPriceDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalExportsImportsQuantityPriceDataParams", + }, }, "PostV2CoalExportsImportsQuantityPriceDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalExportsImportsQuantityPriceData": { - "context.Context", - "PostV2CoalExportsImportsQuantityPriceDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalExportsImportsQuantityPriceDataJSONRequestBody", + }, }, "GetV2CoalExportsImportsQuantityPriceFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalExportsImportsQuantityPriceFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalMarketSalesPrice": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMarketSalesPriceData": { - "context.Context", - "*GetV2CoalMarketSalesPriceDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalMarketSalesPriceDataParams", + }, }, "PostV2CoalMarketSalesPriceDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalMarketSalesPriceData": { - "context.Context", - "PostV2CoalMarketSalesPriceDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalMarketSalesPriceDataJSONRequestBody", + }, }, "GetV2CoalMarketSalesPriceFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMarketSalesPriceFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalMineProduction": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMineProductionData": { - "context.Context", - "*GetV2CoalMineProductionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalMineProductionDataParams", + }, }, "PostV2CoalMineProductionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalMineProductionData": { - "context.Context", - "PostV2CoalMineProductionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalMineProductionDataJSONRequestBody", + }, }, "GetV2CoalMineProductionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMineProductionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalPriceByRank": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalPriceByRankData": { - "context.Context", - "*GetV2CoalPriceByRankDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalPriceByRankDataParams", + }, }, "PostV2CoalPriceByRankDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalPriceByRankData": { - "context.Context", - "PostV2CoalPriceByRankDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalPriceByRankDataJSONRequestBody", + }, }, "GetV2CoalPriceByRankFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalPriceByRankFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalReservesCapacity": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalReservesCapacityData": { - "context.Context", - "*GetV2CoalReservesCapacityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalReservesCapacityDataParams", + }, }, "PostV2CoalReservesCapacityDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalReservesCapacityData": { - "context.Context", - "PostV2CoalReservesCapacityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalReservesCapacityDataJSONRequestBody", + }, }, "GetV2CoalReservesCapacityFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalReservesCapacityFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipments": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsByMineByPlant": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsByMineByPlantData": { - "context.Context", - "*GetV2CoalShipmentsByMineByPlantDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsByMineByPlantDataParams", + }, }, "PostV2CoalShipmentsByMineByPlantDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsByMineByPlantData": { - "context.Context", - "PostV2CoalShipmentsByMineByPlantDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsByMineByPlantDataJSONRequestBody", + }, }, "GetV2CoalShipmentsByMineByPlantFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsByMineByPlantFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsMineAggregates": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineAggregatesData": { - "context.Context", - "*GetV2CoalShipmentsMineAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsMineAggregatesDataParams", + }, }, "PostV2CoalShipmentsMineAggregatesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsMineAggregatesData": { - "context.Context", - "PostV2CoalShipmentsMineAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsMineAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsMineAggregatesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineAggregatesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsMineStateAggregates": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineStateAggregatesData": { - "context.Context", - "*GetV2CoalShipmentsMineStateAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsMineStateAggregatesDataParams", + }, }, "PostV2CoalShipmentsMineStateAggregatesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsMineStateAggregatesData": { - "context.Context", - "PostV2CoalShipmentsMineStateAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsMineStateAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsMineStateAggregatesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineStateAggregatesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsPlantAggregates": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantAggregatesData": { - "context.Context", - "*GetV2CoalShipmentsPlantAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsPlantAggregatesDataParams", + }, }, "PostV2CoalShipmentsPlantAggregatesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsPlantAggregatesData": { - "context.Context", - "PostV2CoalShipmentsPlantAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsPlantAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsPlantAggregatesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantAggregatesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsPlantStateAggregates": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantStateAggregatesData": { - "context.Context", - "*GetV2CoalShipmentsPlantStateAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsPlantStateAggregatesDataParams", + }, }, "PostV2CoalShipmentsPlantStateAggregatesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsPlantStateAggregatesData": { - "context.Context", - "PostV2CoalShipmentsPlantStateAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsPlantStateAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsPlantStateAggregatesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantStateAggregatesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsReceipts": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsReceiptsData": { - "context.Context", - "*GetV2CoalShipmentsReceiptsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsReceiptsDataParams", + }, }, "PostV2CoalShipmentsReceiptsDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsReceiptsData": { - "context.Context", - "PostV2CoalShipmentsReceiptsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsReceiptsDataJSONRequestBody", + }, }, "GetV2CoalShipmentsReceiptsFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsReceiptsFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CrudeOilImports": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CrudeOilImportsData": { - "context.Context", - "*GetV2CrudeOilImportsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CrudeOilImportsDataParams", + }, }, "PostV2CrudeOilImportsDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CrudeOilImportsData": { - "context.Context", - "PostV2CrudeOilImportsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CrudeOilImportsDataJSONRequestBody", + }, }, "GetV2CrudeOilImportsFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CrudeOilImportsFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomass": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCapacityByRegion": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCapacityByRegionData": { - "context.Context", - "*GetV2DensifiedBiomassCapacityByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassCapacityByRegionDataParams", + }, }, "PostV2DensifiedBiomassCapacityByRegionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassCapacityByRegionData": { - "context.Context", - "PostV2DensifiedBiomassCapacityByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassCapacityByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassCapacityByRegionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCapacityByRegionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegion": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionData": { - "context.Context", - "*GetV2DensifiedBiomassCharacteristicsByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassCharacteristicsByRegionDataParams", + }, }, "PostV2DensifiedBiomassCharacteristicsByRegionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassCharacteristicsByRegionData": { - "context.Context", - "PostV2DensifiedBiomassCharacteristicsByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassCharacteristicsByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassExportSalesAndPrice": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceData": { - "context.Context", - "*GetV2DensifiedBiomassExportSalesAndPriceDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassExportSalesAndPriceDataParams", + }, }, "PostV2DensifiedBiomassExportSalesAndPriceDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassExportSalesAndPriceData": { - "context.Context", - "PostV2DensifiedBiomassExportSalesAndPriceDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassExportSalesAndPriceDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassFeedstocksAndCost": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostData": { - "context.Context", - "*GetV2DensifiedBiomassFeedstocksAndCostDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassFeedstocksAndCostDataParams", + }, }, "PostV2DensifiedBiomassFeedstocksAndCostDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassFeedstocksAndCostData": { - "context.Context", - "PostV2DensifiedBiomassFeedstocksAndCostDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassFeedstocksAndCostDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassInventoriesByRegion": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassInventoriesByRegionData": { - "context.Context", - "*GetV2DensifiedBiomassInventoriesByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassInventoriesByRegionDataParams", + }, }, "PostV2DensifiedBiomassInventoriesByRegionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassInventoriesByRegionData": { - "context.Context", - "PostV2DensifiedBiomassInventoriesByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassInventoriesByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassInventoriesByRegionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassInventoriesByRegionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassProductionByRegion": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassProductionByRegionData": { - "context.Context", - "*GetV2DensifiedBiomassProductionByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassProductionByRegionDataParams", + }, }, "PostV2DensifiedBiomassProductionByRegionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassProductionByRegionData": { - "context.Context", - "PostV2DensifiedBiomassProductionByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassProductionByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassProductionByRegionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassProductionByRegionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegion": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionData": { - "context.Context", - "*GetV2DensifiedBiomassSalesAndPriceByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassSalesAndPriceByRegionDataParams", + }, }, "PostV2DensifiedBiomassSalesAndPriceByRegionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassSalesAndPriceByRegionData": { - "context.Context", - "PostV2DensifiedBiomassSalesAndPriceByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassSalesAndPriceByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassWoodPelletPlants": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsData": { - "context.Context", - "*GetV2DensifiedBiomassWoodPelletPlantsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassWoodPelletPlantsDataParams", + }, }, "PostV2DensifiedBiomassWoodPelletPlantsDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassWoodPelletPlantsData": { - "context.Context", - "PostV2DensifiedBiomassWoodPelletPlantsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassWoodPelletPlantsDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Electricity": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityElectricPowerOperationalData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityElectricPowerOperationalDataData": { - "context.Context", - "*GetV2ElectricityElectricPowerOperationalDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityElectricPowerOperationalDataDataParams", + }, }, "PostV2ElectricityElectricPowerOperationalDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityElectricPowerOperationalDataData": { - "context.Context", - "PostV2ElectricityElectricPowerOperationalDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityElectricPowerOperationalDataDataJSONRequestBody", + }, }, "GetV2ElectricityElectricPowerOperationalDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityElectricPowerOperationalDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityFacilityFuel": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityFacilityFuelData": { - "context.Context", - "*GetV2ElectricityFacilityFuelDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityFacilityFuelDataParams", + }, }, "PostV2ElectricityFacilityFuelDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityFacilityFuelData": { - "context.Context", - "PostV2ElectricityFacilityFuelDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityFacilityFuelDataJSONRequestBody", + }, }, "GetV2ElectricityFacilityFuelFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityFacilityFuelFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityOperatingGeneratorCapacity": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityOperatingGeneratorCapacityData": { - "context.Context", - "*GetV2ElectricityOperatingGeneratorCapacityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityOperatingGeneratorCapacityDataParams", + }, }, "PostV2ElectricityOperatingGeneratorCapacityDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityOperatingGeneratorCapacityData": { - "context.Context", - "PostV2ElectricityOperatingGeneratorCapacityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityOperatingGeneratorCapacityDataJSONRequestBody", + }, }, "GetV2ElectricityOperatingGeneratorCapacityFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityOperatingGeneratorCapacityFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRetailSales": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRetailSalesData": { - "context.Context", - "*GetV2ElectricityRetailSalesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRetailSalesDataParams", + }, }, "PostV2ElectricityRetailSalesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRetailSalesData": { - "context.Context", - "PostV2ElectricityRetailSalesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRetailSalesDataJSONRequestBody", + }, }, "GetV2ElectricityRetailSalesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRetailSalesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRto": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyFuelTypeData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataData": { - "context.Context", - "*GetV2ElectricityRtoDailyFuelTypeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyFuelTypeDataDataParams", + }, }, "PostV2ElectricityRtoDailyFuelTypeDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyFuelTypeDataData": { - "context.Context", - "PostV2ElectricityRtoDailyFuelTypeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyFuelTypeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoDailyInterchangeData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyInterchangeDataData": { - "context.Context", - "*GetV2ElectricityRtoDailyInterchangeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyInterchangeDataDataParams", + }, }, "PostV2ElectricityRtoDailyInterchangeDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyInterchangeDataData": { - "context.Context", - "PostV2ElectricityRtoDailyInterchangeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyInterchangeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyInterchangeDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyInterchangeDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoDailyRegionData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionDataData": { - "context.Context", - "*GetV2ElectricityRtoDailyRegionDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyRegionDataDataParams", + }, }, "PostV2ElectricityRtoDailyRegionDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyRegionDataData": { - "context.Context", - "PostV2ElectricityRtoDailyRegionDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyRegionDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyRegionDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoDailyRegionSubBaData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataData": { - "context.Context", - "*GetV2ElectricityRtoDailyRegionSubBaDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyRegionSubBaDataDataParams", + }, }, "PostV2ElectricityRtoDailyRegionSubBaDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyRegionSubBaDataData": { - "context.Context", - "PostV2ElectricityRtoDailyRegionSubBaDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyRegionSubBaDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoFuelTypeData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoFuelTypeDataData": { - "context.Context", - "*GetV2ElectricityRtoFuelTypeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoFuelTypeDataDataParams", + }, }, "PostV2ElectricityRtoFuelTypeDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoFuelTypeDataData": { - "context.Context", - "PostV2ElectricityRtoFuelTypeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoFuelTypeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoFuelTypeDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoFuelTypeDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoInterchangeData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoInterchangeDataData": { - "context.Context", - "*GetV2ElectricityRtoInterchangeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoInterchangeDataDataParams", + }, }, "PostV2ElectricityRtoInterchangeDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoInterchangeDataData": { - "context.Context", - "PostV2ElectricityRtoInterchangeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoInterchangeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoInterchangeDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoInterchangeDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoRegionData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionDataData": { - "context.Context", - "*GetV2ElectricityRtoRegionDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoRegionDataDataParams", + }, }, "PostV2ElectricityRtoRegionDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoRegionDataData": { - "context.Context", - "PostV2ElectricityRtoRegionDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoRegionDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoRegionDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoRegionSubBaData": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionSubBaDataData": { - "context.Context", - "*GetV2ElectricityRtoRegionSubBaDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoRegionSubBaDataDataParams", + }, }, "PostV2ElectricityRtoRegionSubBaDataDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoRegionSubBaDataData": { - "context.Context", - "PostV2ElectricityRtoRegionSubBaDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoRegionSubBaDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoRegionSubBaDataFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionSubBaDataFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricitySep": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesCapability": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesCapabilityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesCapabilityDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesCapabilityDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesCapabilityData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesCapabilityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesCapabilityDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuel": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiency": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesMeters": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesMetersData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesMetersDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesMetersDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesMetersDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesMetersData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesMetersDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesMetersDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesMetersFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesMetersFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesNetMetering": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesNetMeteringDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesNetMeteringDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesNetMeteringDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesNetMeteringData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesNetMeteringDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesNetMeteringDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDisposition": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesSourceDispositionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesSourceDispositionDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesSourceDispositionDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesSourceDispositionData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesSourceDispositionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesSourceDispositionDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesSummary": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryData": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesSummaryDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesSummaryDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesSummaryDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesSummaryData": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesSummaryDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesSummaryDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerIeo": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerConstruct": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "string", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerGetData": { - "context.Context", - "Route1", - "*EIAAPIControllersDatasetAeoIeoIeoControllerGetDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "params", + Type: "*EIAAPIControllersDatasetAeoIeoIeoControllerGetDataParams", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataWithBody": { - "context.Context", - "Route1", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerPostData": { - "context.Context", - "Route1", - "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "body", + Type: "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataJSONRequestBody", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerRouteFacet": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "string", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetId": { - "context.Context", - "Route1", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2International": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2InternationalData": { - "context.Context", - "*GetV2InternationalDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2InternationalDataParams", + }, }, "PostV2InternationalDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2InternationalData": { - "context.Context", - "PostV2InternationalDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2InternationalDataJSONRequestBody", + }, }, "GetV2InternationalFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2InternationalFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NaturalGas": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NaturalGasRoute1": { - "context.Context", - "Route1", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, }, "GetV2NaturalGasRoute1Route2": { - "context.Context", - "Route1", - "Route2", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, }, "GetV2NaturalGasRoute1Route2Data": { - "context.Context", - "Route1", - "Route2", - "*GetV2NaturalGasRoute1Route2DataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "params", + Type: "*GetV2NaturalGasRoute1Route2DataParams", + }, }, "PostV2NaturalGasRoute1Route2DataWithBody": { - "context.Context", - "Route1", - "Route2", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NaturalGasRoute1Route2Data": { - "context.Context", - "Route1", - "Route2", - "PostV2NaturalGasRoute1Route2DataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "body", + Type: "PostV2NaturalGasRoute1Route2DataJSONRequestBody", + }, }, "GetV2NaturalGasRoute1Route2Facet": { - "context.Context", - "Route1", - "Route2", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, }, "GetV2NaturalGasRoute1Route2FacetFacetId": { - "context.Context", - "Route1", - "Route2", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NuclearOutages": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesFacilityNuclearOutages": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesData": { - "context.Context", - "*GetV2NuclearOutagesFacilityNuclearOutagesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesFacilityNuclearOutagesDataParams", + }, }, "PostV2NuclearOutagesFacilityNuclearOutagesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NuclearOutagesFacilityNuclearOutagesData": { - "context.Context", - "PostV2NuclearOutagesFacilityNuclearOutagesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesFacilityNuclearOutagesDataJSONRequestBody", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutages": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesData": { - "context.Context", - "*GetV2NuclearOutagesGeneratorNuclearOutagesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesGeneratorNuclearOutagesDataParams", + }, }, "PostV2NuclearOutagesGeneratorNuclearOutagesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NuclearOutagesGeneratorNuclearOutagesData": { - "context.Context", - "PostV2NuclearOutagesGeneratorNuclearOutagesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesGeneratorNuclearOutagesDataJSONRequestBody", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NuclearOutagesUsNuclearOutages": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesUsNuclearOutagesData": { - "context.Context", - "*GetV2NuclearOutagesUsNuclearOutagesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesUsNuclearOutagesDataParams", + }, }, "PostV2NuclearOutagesUsNuclearOutagesDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NuclearOutagesUsNuclearOutagesData": { - "context.Context", - "PostV2NuclearOutagesUsNuclearOutagesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesUsNuclearOutagesDataJSONRequestBody", + }, }, "GetV2NuclearOutagesUsNuclearOutagesFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesUsNuclearOutagesFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Seds": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SedsData": { - "context.Context", - "*GetV2SedsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2SedsDataParams", + }, }, "PostV2SedsDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2SedsData": { - "context.Context", - "PostV2SedsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2SedsDataJSONRequestBody", + }, }, "GetV2SedsFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SedsFacetFacetId": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "string", + }, }, "GetV2Steo": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SteoData": { - "context.Context", - "*GetV2SteoDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2SteoDataParams", + }, }, "PostV2SteoDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2SteoData": { - "context.Context", - "PostV2SteoDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2SteoDataJSONRequestBody", + }, }, "GetV2SteoFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SteoFacetFacetId": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "string", + }, }, "GetV2TotalEnergy": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2TotalEnergyData": { - "context.Context", - "*GetV2TotalEnergyDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2TotalEnergyDataParams", + }, }, "PostV2TotalEnergyDataWithBody": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2TotalEnergyData": { - "context.Context", - "PostV2TotalEnergyDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2TotalEnergyDataJSONRequestBody", + }, }, "GetV2TotalEnergyFacet": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2TotalEnergyFacetFacetId": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2Request": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2AeoRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2AeoRoute1Request": { - "string", - "string", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "string", + }, }, "NewGetV2AeoRoute1DataRequest": { - "string", - "Route1", - "*GetV2AeoRoute1DataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "params", + Type: "*GetV2AeoRoute1DataParams", + }, }, "NewPostV2AeoRoute1DataRequest": { - "string", - "Route1", - "PostV2AeoRoute1DataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "body", + Type: "PostV2AeoRoute1DataJSONRequestBody", + }, }, "NewPostV2AeoRoute1DataRequestWithBody": { - "string", - "Route1", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2AeoRoute1FacetRequest": { - "string", - "Route1", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, }, "NewGetV2AeoRoute1FacetFacetIdRequest": { - "string", - "Route1", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2Co2EmissionsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAggregatesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAggregatesDataRequest": { - "string", - "*GetV2Co2EmissionsCo2EmissionsAggregatesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2Co2EmissionsCo2EmissionsAggregatesDataParams", + }, }, "NewPostV2Co2EmissionsCo2EmissionsAggregatesDataRequest": { - "string", - "PostV2Co2EmissionsCo2EmissionsAggregatesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2Co2EmissionsCo2EmissionsAggregatesDataJSONRequestBody", + }, }, "NewPostV2Co2EmissionsCo2EmissionsAggregatesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAggregatesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAggregatesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataRequest": { - "string", - "*GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataParams", + }, }, "NewPostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataRequest": { - "string", - "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataJSONRequestBody", + }, }, "NewPostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalAggregateProductionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalAggregateProductionDataRequest": { - "string", - "*GetV2CoalAggregateProductionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalAggregateProductionDataParams", + }, }, "NewPostV2CoalAggregateProductionDataRequest": { - "string", - "PostV2CoalAggregateProductionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalAggregateProductionDataJSONRequestBody", + }, }, "NewPostV2CoalAggregateProductionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalAggregateProductionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalAggregateProductionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalConsumptionAndQualityRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalConsumptionAndQualityDataRequest": { - "string", - "*GetV2CoalConsumptionAndQualityDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalConsumptionAndQualityDataParams", + }, }, "NewPostV2CoalConsumptionAndQualityDataRequest": { - "string", - "PostV2CoalConsumptionAndQualityDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalConsumptionAndQualityDataJSONRequestBody", + }, }, "NewPostV2CoalConsumptionAndQualityDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalConsumptionAndQualityFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalConsumptionAndQualityFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalExportsImportsQuantityPriceRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalExportsImportsQuantityPriceDataRequest": { - "string", - "*GetV2CoalExportsImportsQuantityPriceDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalExportsImportsQuantityPriceDataParams", + }, }, "NewPostV2CoalExportsImportsQuantityPriceDataRequest": { - "string", - "PostV2CoalExportsImportsQuantityPriceDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalExportsImportsQuantityPriceDataJSONRequestBody", + }, }, "NewPostV2CoalExportsImportsQuantityPriceDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalExportsImportsQuantityPriceFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalExportsImportsQuantityPriceFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalMarketSalesPriceRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalMarketSalesPriceDataRequest": { - "string", - "*GetV2CoalMarketSalesPriceDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalMarketSalesPriceDataParams", + }, }, "NewPostV2CoalMarketSalesPriceDataRequest": { - "string", - "PostV2CoalMarketSalesPriceDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalMarketSalesPriceDataJSONRequestBody", + }, }, "NewPostV2CoalMarketSalesPriceDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalMarketSalesPriceFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalMarketSalesPriceFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalMineProductionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalMineProductionDataRequest": { - "string", - "*GetV2CoalMineProductionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalMineProductionDataParams", + }, }, "NewPostV2CoalMineProductionDataRequest": { - "string", - "PostV2CoalMineProductionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalMineProductionDataJSONRequestBody", + }, }, "NewPostV2CoalMineProductionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalMineProductionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalMineProductionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalPriceByRankRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalPriceByRankDataRequest": { - "string", - "*GetV2CoalPriceByRankDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalPriceByRankDataParams", + }, }, "NewPostV2CoalPriceByRankDataRequest": { - "string", - "PostV2CoalPriceByRankDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalPriceByRankDataJSONRequestBody", + }, }, "NewPostV2CoalPriceByRankDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalPriceByRankFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalPriceByRankFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalReservesCapacityRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalReservesCapacityDataRequest": { - "string", - "*GetV2CoalReservesCapacityDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalReservesCapacityDataParams", + }, }, "NewPostV2CoalReservesCapacityDataRequest": { - "string", - "PostV2CoalReservesCapacityDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalReservesCapacityDataJSONRequestBody", + }, }, "NewPostV2CoalReservesCapacityDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalReservesCapacityFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalReservesCapacityFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalShipmentsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsByMineByPlantRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsByMineByPlantDataRequest": { - "string", - "*GetV2CoalShipmentsByMineByPlantDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsByMineByPlantDataParams", + }, }, "NewPostV2CoalShipmentsByMineByPlantDataRequest": { - "string", - "PostV2CoalShipmentsByMineByPlantDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsByMineByPlantDataJSONRequestBody", + }, }, "NewPostV2CoalShipmentsByMineByPlantDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalShipmentsByMineByPlantFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsByMineByPlantFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalShipmentsMineAggregatesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsMineAggregatesDataRequest": { - "string", - "*GetV2CoalShipmentsMineAggregatesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsMineAggregatesDataParams", + }, }, "NewPostV2CoalShipmentsMineAggregatesDataRequest": { - "string", - "PostV2CoalShipmentsMineAggregatesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsMineAggregatesDataJSONRequestBody", + }, }, "NewPostV2CoalShipmentsMineAggregatesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalShipmentsMineAggregatesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsMineAggregatesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalShipmentsMineStateAggregatesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsMineStateAggregatesDataRequest": { - "string", - "*GetV2CoalShipmentsMineStateAggregatesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsMineStateAggregatesDataParams", + }, }, "NewPostV2CoalShipmentsMineStateAggregatesDataRequest": { - "string", - "PostV2CoalShipmentsMineStateAggregatesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsMineStateAggregatesDataJSONRequestBody", + }, }, "NewPostV2CoalShipmentsMineStateAggregatesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalShipmentsMineStateAggregatesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsMineStateAggregatesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalShipmentsPlantAggregatesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsPlantAggregatesDataRequest": { - "string", - "*GetV2CoalShipmentsPlantAggregatesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsPlantAggregatesDataParams", + }, }, "NewPostV2CoalShipmentsPlantAggregatesDataRequest": { - "string", - "PostV2CoalShipmentsPlantAggregatesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsPlantAggregatesDataJSONRequestBody", + }, }, "NewPostV2CoalShipmentsPlantAggregatesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalShipmentsPlantAggregatesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsPlantAggregatesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalShipmentsPlantStateAggregatesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsPlantStateAggregatesDataRequest": { - "string", - "*GetV2CoalShipmentsPlantStateAggregatesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsPlantStateAggregatesDataParams", + }, }, "NewPostV2CoalShipmentsPlantStateAggregatesDataRequest": { - "string", - "PostV2CoalShipmentsPlantStateAggregatesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsPlantStateAggregatesDataJSONRequestBody", + }, }, "NewPostV2CoalShipmentsPlantStateAggregatesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalShipmentsPlantStateAggregatesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsPlantStateAggregatesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CoalShipmentsReceiptsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsReceiptsDataRequest": { - "string", - "*GetV2CoalShipmentsReceiptsDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsReceiptsDataParams", + }, }, "NewPostV2CoalShipmentsReceiptsDataRequest": { - "string", - "PostV2CoalShipmentsReceiptsDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsReceiptsDataJSONRequestBody", + }, }, "NewPostV2CoalShipmentsReceiptsDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CoalShipmentsReceiptsFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CoalShipmentsReceiptsFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2CrudeOilImportsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CrudeOilImportsDataRequest": { - "string", - "*GetV2CrudeOilImportsDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2CrudeOilImportsDataParams", + }, }, "NewPostV2CrudeOilImportsDataRequest": { - "string", - "PostV2CrudeOilImportsDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2CrudeOilImportsDataJSONRequestBody", + }, }, "NewPostV2CrudeOilImportsDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2CrudeOilImportsFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2CrudeOilImportsFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassCapacityByRegionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassCapacityByRegionDataRequest": { - "string", - "*GetV2DensifiedBiomassCapacityByRegionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassCapacityByRegionDataParams", + }, }, "NewPostV2DensifiedBiomassCapacityByRegionDataRequest": { - "string", - "PostV2DensifiedBiomassCapacityByRegionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassCapacityByRegionDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassCapacityByRegionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassCapacityByRegionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassCapacityByRegionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassCharacteristicsByRegionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassCharacteristicsByRegionDataRequest": { - "string", - "*GetV2DensifiedBiomassCharacteristicsByRegionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassCharacteristicsByRegionDataParams", + }, }, "NewPostV2DensifiedBiomassCharacteristicsByRegionDataRequest": { - "string", - "PostV2DensifiedBiomassCharacteristicsByRegionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassCharacteristicsByRegionDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassCharacteristicsByRegionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassCharacteristicsByRegionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassCharacteristicsByRegionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassExportSalesAndPriceRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassExportSalesAndPriceDataRequest": { - "string", - "*GetV2DensifiedBiomassExportSalesAndPriceDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassExportSalesAndPriceDataParams", + }, }, "NewPostV2DensifiedBiomassExportSalesAndPriceDataRequest": { - "string", - "PostV2DensifiedBiomassExportSalesAndPriceDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassExportSalesAndPriceDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassExportSalesAndPriceDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassExportSalesAndPriceFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassExportSalesAndPriceFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassFeedstocksAndCostRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassFeedstocksAndCostDataRequest": { - "string", - "*GetV2DensifiedBiomassFeedstocksAndCostDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassFeedstocksAndCostDataParams", + }, }, "NewPostV2DensifiedBiomassFeedstocksAndCostDataRequest": { - "string", - "PostV2DensifiedBiomassFeedstocksAndCostDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassFeedstocksAndCostDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassFeedstocksAndCostDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassFeedstocksAndCostFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassFeedstocksAndCostFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassInventoriesByRegionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassInventoriesByRegionDataRequest": { - "string", - "*GetV2DensifiedBiomassInventoriesByRegionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassInventoriesByRegionDataParams", + }, }, "NewPostV2DensifiedBiomassInventoriesByRegionDataRequest": { - "string", - "PostV2DensifiedBiomassInventoriesByRegionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassInventoriesByRegionDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassInventoriesByRegionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassInventoriesByRegionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassInventoriesByRegionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassProductionByRegionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassProductionByRegionDataRequest": { - "string", - "*GetV2DensifiedBiomassProductionByRegionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassProductionByRegionDataParams", + }, }, "NewPostV2DensifiedBiomassProductionByRegionDataRequest": { - "string", - "PostV2DensifiedBiomassProductionByRegionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassProductionByRegionDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassProductionByRegionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassProductionByRegionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassProductionByRegionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassSalesAndPriceByRegionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassSalesAndPriceByRegionDataRequest": { - "string", - "*GetV2DensifiedBiomassSalesAndPriceByRegionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassSalesAndPriceByRegionDataParams", + }, }, "NewPostV2DensifiedBiomassSalesAndPriceByRegionDataRequest": { - "string", - "PostV2DensifiedBiomassSalesAndPriceByRegionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassSalesAndPriceByRegionDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassSalesAndPriceByRegionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassSalesAndPriceByRegionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassSalesAndPriceByRegionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2DensifiedBiomassWoodPelletPlantsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassWoodPelletPlantsDataRequest": { - "string", - "*GetV2DensifiedBiomassWoodPelletPlantsDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassWoodPelletPlantsDataParams", + }, }, "NewPostV2DensifiedBiomassWoodPelletPlantsDataRequest": { - "string", - "PostV2DensifiedBiomassWoodPelletPlantsDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassWoodPelletPlantsDataJSONRequestBody", + }, }, "NewPostV2DensifiedBiomassWoodPelletPlantsDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2DensifiedBiomassWoodPelletPlantsFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2DensifiedBiomassWoodPelletPlantsFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityElectricPowerOperationalDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityElectricPowerOperationalDataDataRequest": { - "string", - "*GetV2ElectricityElectricPowerOperationalDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityElectricPowerOperationalDataDataParams", + }, }, "NewPostV2ElectricityElectricPowerOperationalDataDataRequest": { - "string", - "PostV2ElectricityElectricPowerOperationalDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityElectricPowerOperationalDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityElectricPowerOperationalDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityElectricPowerOperationalDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityElectricPowerOperationalDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityFacilityFuelRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityFacilityFuelDataRequest": { - "string", - "*GetV2ElectricityFacilityFuelDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityFacilityFuelDataParams", + }, }, "NewPostV2ElectricityFacilityFuelDataRequest": { - "string", - "PostV2ElectricityFacilityFuelDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityFacilityFuelDataJSONRequestBody", + }, }, "NewPostV2ElectricityFacilityFuelDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityFacilityFuelFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityFacilityFuelFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityOperatingGeneratorCapacityRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityOperatingGeneratorCapacityDataRequest": { - "string", - "*GetV2ElectricityOperatingGeneratorCapacityDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityOperatingGeneratorCapacityDataParams", + }, }, "NewPostV2ElectricityOperatingGeneratorCapacityDataRequest": { - "string", - "PostV2ElectricityOperatingGeneratorCapacityDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityOperatingGeneratorCapacityDataJSONRequestBody", + }, }, "NewPostV2ElectricityOperatingGeneratorCapacityDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityOperatingGeneratorCapacityFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityOperatingGeneratorCapacityFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRetailSalesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRetailSalesDataRequest": { - "string", - "*GetV2ElectricityRetailSalesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRetailSalesDataParams", + }, }, "NewPostV2ElectricityRetailSalesDataRequest": { - "string", - "PostV2ElectricityRetailSalesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRetailSalesDataJSONRequestBody", + }, }, "NewPostV2ElectricityRetailSalesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRetailSalesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRetailSalesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyFuelTypeDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyFuelTypeDataDataRequest": { - "string", - "*GetV2ElectricityRtoDailyFuelTypeDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyFuelTypeDataDataParams", + }, }, "NewPostV2ElectricityRtoDailyFuelTypeDataDataRequest": { - "string", - "PostV2ElectricityRtoDailyFuelTypeDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyFuelTypeDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoDailyFuelTypeDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoDailyFuelTypeDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyFuelTypeDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoDailyInterchangeDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyInterchangeDataDataRequest": { - "string", - "*GetV2ElectricityRtoDailyInterchangeDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyInterchangeDataDataParams", + }, }, "NewPostV2ElectricityRtoDailyInterchangeDataDataRequest": { - "string", - "PostV2ElectricityRtoDailyInterchangeDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyInterchangeDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoDailyInterchangeDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoDailyInterchangeDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyInterchangeDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoDailyRegionDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyRegionDataDataRequest": { - "string", - "*GetV2ElectricityRtoDailyRegionDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyRegionDataDataParams", + }, }, "NewPostV2ElectricityRtoDailyRegionDataDataRequest": { - "string", - "PostV2ElectricityRtoDailyRegionDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyRegionDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoDailyRegionDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoDailyRegionDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyRegionDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoDailyRegionSubBaDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyRegionSubBaDataDataRequest": { - "string", - "*GetV2ElectricityRtoDailyRegionSubBaDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyRegionSubBaDataDataParams", + }, }, "NewPostV2ElectricityRtoDailyRegionSubBaDataDataRequest": { - "string", - "PostV2ElectricityRtoDailyRegionSubBaDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyRegionSubBaDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoDailyRegionSubBaDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoDailyRegionSubBaDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoDailyRegionSubBaDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoFuelTypeDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoFuelTypeDataDataRequest": { - "string", - "*GetV2ElectricityRtoFuelTypeDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoFuelTypeDataDataParams", + }, }, "NewPostV2ElectricityRtoFuelTypeDataDataRequest": { - "string", - "PostV2ElectricityRtoFuelTypeDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoFuelTypeDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoFuelTypeDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoFuelTypeDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoFuelTypeDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoInterchangeDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoInterchangeDataDataRequest": { - "string", - "*GetV2ElectricityRtoInterchangeDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoInterchangeDataDataParams", + }, }, "NewPostV2ElectricityRtoInterchangeDataDataRequest": { - "string", - "PostV2ElectricityRtoInterchangeDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoInterchangeDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoInterchangeDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoInterchangeDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoInterchangeDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoRegionDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoRegionDataDataRequest": { - "string", - "*GetV2ElectricityRtoRegionDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoRegionDataDataParams", + }, }, "NewPostV2ElectricityRtoRegionDataDataRequest": { - "string", - "PostV2ElectricityRtoRegionDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoRegionDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoRegionDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoRegionDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoRegionDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityRtoRegionSubBaDataRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoRegionSubBaDataDataRequest": { - "string", - "*GetV2ElectricityRtoRegionSubBaDataDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoRegionSubBaDataDataParams", + }, }, "NewPostV2ElectricityRtoRegionSubBaDataDataRequest": { - "string", - "PostV2ElectricityRtoRegionSubBaDataDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoRegionSubBaDataDataJSONRequestBody", + }, }, "NewPostV2ElectricityRtoRegionSubBaDataDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityRtoRegionSubBaDataFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityRtoRegionSubBaDataFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricitySepRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesCapabilityRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesCapabilityDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesCapabilityDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesCapabilityDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesCapabilityDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesCapabilityDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesCapabilityDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesCapabilityDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesCapabilityFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesCapabilityFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityStateElectricityProfilesEnergyEfficiencyRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityStateElectricityProfilesMetersRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesMetersDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesMetersDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesMetersDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesMetersDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesMetersDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesMetersDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesMetersDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesMetersFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesMetersFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityStateElectricityProfilesNetMeteringRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesNetMeteringDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesNetMeteringDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesNetMeteringDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesNetMeteringDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesNetMeteringDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesNetMeteringDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesNetMeteringDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesNetMeteringFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesNetMeteringFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityStateElectricityProfilesSourceDispositionRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesSourceDispositionDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesSourceDispositionDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesSourceDispositionDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesSourceDispositionDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesSourceDispositionDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesSourceDispositionDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesSourceDispositionDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesSourceDispositionFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesSourceDispositionFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2ElectricityStateElectricityProfilesSummaryRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesSummaryDataRequest": { - "string", - "*GetV2ElectricityStateElectricityProfilesSummaryDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesSummaryDataParams", + }, }, "NewPostV2ElectricityStateElectricityProfilesSummaryDataRequest": { - "string", - "PostV2ElectricityStateElectricityProfilesSummaryDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesSummaryDataJSONRequestBody", + }, }, "NewPostV2ElectricityStateElectricityProfilesSummaryDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2ElectricityStateElectricityProfilesSummaryFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2ElectricityStateElectricityProfilesSummaryFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerIeoRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerConstructRequest": { - "string", - "string", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "string", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerGetDataRequest": { - "string", - "Route1", - "*EIAAPIControllersDatasetAeoIeoIeoControllerGetDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "params", + Type: "*EIAAPIControllersDatasetAeoIeoIeoControllerGetDataParams", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerPostDataRequest": { - "string", - "Route1", - "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "body", + Type: "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataJSONRequestBody", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerPostDataRequestWithBody": { - "string", - "Route1", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetRequest": { - "string", - "string", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "string", + }, }, "NewEIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetIdRequest": { - "string", - "Route1", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2InternationalRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2InternationalDataRequest": { - "string", - "*GetV2InternationalDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2InternationalDataParams", + }, }, "NewPostV2InternationalDataRequest": { - "string", - "PostV2InternationalDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2InternationalDataJSONRequestBody", + }, }, "NewPostV2InternationalDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2InternationalFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2InternationalFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2NaturalGasRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NaturalGasRoute1Request": { - "string", - "Route1", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, }, "NewGetV2NaturalGasRoute1Route2Request": { - "string", - "Route1", - "Route2", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, }, "NewGetV2NaturalGasRoute1Route2DataRequest": { - "string", - "Route1", - "Route2", - "*GetV2NaturalGasRoute1Route2DataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "params", + Type: "*GetV2NaturalGasRoute1Route2DataParams", + }, }, "NewPostV2NaturalGasRoute1Route2DataRequest": { - "string", - "Route1", - "Route2", - "PostV2NaturalGasRoute1Route2DataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "body", + Type: "PostV2NaturalGasRoute1Route2DataJSONRequestBody", + }, }, "NewPostV2NaturalGasRoute1Route2DataRequestWithBody": { - "string", - "Route1", - "Route2", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2NaturalGasRoute1Route2FacetRequest": { - "string", - "Route1", - "Route2", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, }, "NewGetV2NaturalGasRoute1Route2FacetFacetIdRequest": { - "string", - "Route1", - "Route2", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2NuclearOutagesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesFacilityNuclearOutagesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesFacilityNuclearOutagesDataRequest": { - "string", - "*GetV2NuclearOutagesFacilityNuclearOutagesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesFacilityNuclearOutagesDataParams", + }, }, "NewPostV2NuclearOutagesFacilityNuclearOutagesDataRequest": { - "string", - "PostV2NuclearOutagesFacilityNuclearOutagesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesFacilityNuclearOutagesDataJSONRequestBody", + }, }, "NewPostV2NuclearOutagesFacilityNuclearOutagesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2NuclearOutagesFacilityNuclearOutagesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesFacilityNuclearOutagesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2NuclearOutagesGeneratorNuclearOutagesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesGeneratorNuclearOutagesDataRequest": { - "string", - "*GetV2NuclearOutagesGeneratorNuclearOutagesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesGeneratorNuclearOutagesDataParams", + }, }, "NewPostV2NuclearOutagesGeneratorNuclearOutagesDataRequest": { - "string", - "PostV2NuclearOutagesGeneratorNuclearOutagesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesGeneratorNuclearOutagesDataJSONRequestBody", + }, }, "NewPostV2NuclearOutagesGeneratorNuclearOutagesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2NuclearOutagesGeneratorNuclearOutagesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesGeneratorNuclearOutagesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2NuclearOutagesUsNuclearOutagesRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesUsNuclearOutagesDataRequest": { - "string", - "*GetV2NuclearOutagesUsNuclearOutagesDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesUsNuclearOutagesDataParams", + }, }, "NewPostV2NuclearOutagesUsNuclearOutagesDataRequest": { - "string", - "PostV2NuclearOutagesUsNuclearOutagesDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesUsNuclearOutagesDataJSONRequestBody", + }, }, "NewPostV2NuclearOutagesUsNuclearOutagesDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2NuclearOutagesUsNuclearOutagesFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2NuclearOutagesUsNuclearOutagesFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewGetV2SedsRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2SedsDataRequest": { - "string", - "*GetV2SedsDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2SedsDataParams", + }, }, "NewPostV2SedsDataRequest": { - "string", - "PostV2SedsDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2SedsDataJSONRequestBody", + }, }, "NewPostV2SedsDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2SedsFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2SedsFacetFacetIdRequest": { - "string", - "string", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "string", + }, }, "NewGetV2SteoRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2SteoDataRequest": { - "string", - "*GetV2SteoDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2SteoDataParams", + }, }, "NewPostV2SteoDataRequest": { - "string", - "PostV2SteoDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2SteoDataJSONRequestBody", + }, }, "NewPostV2SteoDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2SteoFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2SteoFacetFacetIdRequest": { - "string", - "string", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "string", + }, }, "NewGetV2TotalEnergyRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2TotalEnergyDataRequest": { - "string", - "*GetV2TotalEnergyDataParams", + { + Name: "server", + Type: "string", + }, + { + Name: "params", + Type: "*GetV2TotalEnergyDataParams", + }, }, "NewPostV2TotalEnergyDataRequest": { - "string", - "PostV2TotalEnergyDataJSONRequestBody", + { + Name: "server", + Type: "string", + }, + { + Name: "body", + Type: "PostV2TotalEnergyDataJSONRequestBody", + }, }, "NewPostV2TotalEnergyDataRequestWithBody": { - "string", - "string", - "io.Reader", + { + Name: "server", + Type: "string", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "NewGetV2TotalEnergyFacetRequest": { - "string", + { + Name: "server", + Type: "string", + }, }, "NewGetV2TotalEnergyFacetFacetIdRequest": { - "string", - "FacetId", + { + Name: "server", + Type: "string", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "NewClientWithResponses": { - "string", + { + Name: "server", + Type: "string", + }, }, "WithBaseURL": { - "string", + { + Name: "baseURL", + Type: "string", + }, }, "GetV2WithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2AeoWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2AeoRoute1WithResponse": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "string", + }, }, "GetV2AeoRoute1DataWithResponse": { - "context.Context", - "Route1", - "*GetV2AeoRoute1DataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "params", + Type: "*GetV2AeoRoute1DataParams", + }, }, "PostV2AeoRoute1DataWithBodyWithResponse": { - "context.Context", - "Route1", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2AeoRoute1DataWithResponse": { - "context.Context", - "Route1", - "PostV2AeoRoute1DataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "body", + Type: "PostV2AeoRoute1DataJSONRequestBody", + }, }, "GetV2AeoRoute1FacetWithResponse": { - "context.Context", - "Route1", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, }, "GetV2AeoRoute1FacetFacetIdWithResponse": { - "context.Context", - "Route1", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Co2EmissionsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesDataWithResponse": { - "context.Context", - "*GetV2Co2EmissionsCo2EmissionsAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2Co2EmissionsCo2EmissionsAggregatesDataParams", + }, }, "PostV2Co2EmissionsCo2EmissionsAggregatesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2Co2EmissionsCo2EmissionsAggregatesDataWithResponse": { - "context.Context", - "PostV2Co2EmissionsCo2EmissionsAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2Co2EmissionsCo2EmissionsAggregatesDataJSONRequestBody", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAggregatesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataWithResponse": { - "context.Context", - "*GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataParams", + }, }, "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataWithResponse": { - "context.Context", - "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataJSONRequestBody", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalAggregateProductionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalAggregateProductionDataWithResponse": { - "context.Context", - "*GetV2CoalAggregateProductionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalAggregateProductionDataParams", + }, }, "PostV2CoalAggregateProductionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalAggregateProductionDataWithResponse": { - "context.Context", - "PostV2CoalAggregateProductionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalAggregateProductionDataJSONRequestBody", + }, }, "GetV2CoalAggregateProductionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalAggregateProductionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalConsumptionAndQualityWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalConsumptionAndQualityDataWithResponse": { - "context.Context", - "*GetV2CoalConsumptionAndQualityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalConsumptionAndQualityDataParams", + }, }, "PostV2CoalConsumptionAndQualityDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalConsumptionAndQualityDataWithResponse": { - "context.Context", - "PostV2CoalConsumptionAndQualityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalConsumptionAndQualityDataJSONRequestBody", + }, }, "GetV2CoalConsumptionAndQualityFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalConsumptionAndQualityFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalExportsImportsQuantityPriceWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalExportsImportsQuantityPriceDataWithResponse": { - "context.Context", - "*GetV2CoalExportsImportsQuantityPriceDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalExportsImportsQuantityPriceDataParams", + }, }, "PostV2CoalExportsImportsQuantityPriceDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalExportsImportsQuantityPriceDataWithResponse": { - "context.Context", - "PostV2CoalExportsImportsQuantityPriceDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalExportsImportsQuantityPriceDataJSONRequestBody", + }, }, "GetV2CoalExportsImportsQuantityPriceFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalExportsImportsQuantityPriceFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalMarketSalesPriceWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMarketSalesPriceDataWithResponse": { - "context.Context", - "*GetV2CoalMarketSalesPriceDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalMarketSalesPriceDataParams", + }, }, "PostV2CoalMarketSalesPriceDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalMarketSalesPriceDataWithResponse": { - "context.Context", - "PostV2CoalMarketSalesPriceDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalMarketSalesPriceDataJSONRequestBody", + }, }, "GetV2CoalMarketSalesPriceFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMarketSalesPriceFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalMineProductionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMineProductionDataWithResponse": { - "context.Context", - "*GetV2CoalMineProductionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalMineProductionDataParams", + }, }, "PostV2CoalMineProductionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalMineProductionDataWithResponse": { - "context.Context", - "PostV2CoalMineProductionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalMineProductionDataJSONRequestBody", + }, }, "GetV2CoalMineProductionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalMineProductionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalPriceByRankWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalPriceByRankDataWithResponse": { - "context.Context", - "*GetV2CoalPriceByRankDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalPriceByRankDataParams", + }, }, "PostV2CoalPriceByRankDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalPriceByRankDataWithResponse": { - "context.Context", - "PostV2CoalPriceByRankDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalPriceByRankDataJSONRequestBody", + }, }, "GetV2CoalPriceByRankFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalPriceByRankFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalReservesCapacityWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalReservesCapacityDataWithResponse": { - "context.Context", - "*GetV2CoalReservesCapacityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalReservesCapacityDataParams", + }, }, "PostV2CoalReservesCapacityDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalReservesCapacityDataWithResponse": { - "context.Context", - "PostV2CoalReservesCapacityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalReservesCapacityDataJSONRequestBody", + }, }, "GetV2CoalReservesCapacityFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalReservesCapacityFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsByMineByPlantWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsByMineByPlantDataWithResponse": { - "context.Context", - "*GetV2CoalShipmentsByMineByPlantDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsByMineByPlantDataParams", + }, }, "PostV2CoalShipmentsByMineByPlantDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsByMineByPlantDataWithResponse": { - "context.Context", - "PostV2CoalShipmentsByMineByPlantDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsByMineByPlantDataJSONRequestBody", + }, }, "GetV2CoalShipmentsByMineByPlantFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsByMineByPlantFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsMineAggregatesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineAggregatesDataWithResponse": { - "context.Context", - "*GetV2CoalShipmentsMineAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsMineAggregatesDataParams", + }, }, "PostV2CoalShipmentsMineAggregatesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsMineAggregatesDataWithResponse": { - "context.Context", - "PostV2CoalShipmentsMineAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsMineAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsMineAggregatesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineAggregatesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsMineStateAggregatesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineStateAggregatesDataWithResponse": { - "context.Context", - "*GetV2CoalShipmentsMineStateAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsMineStateAggregatesDataParams", + }, }, "PostV2CoalShipmentsMineStateAggregatesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsMineStateAggregatesDataWithResponse": { - "context.Context", - "PostV2CoalShipmentsMineStateAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsMineStateAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsMineStateAggregatesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsMineStateAggregatesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsPlantAggregatesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantAggregatesDataWithResponse": { - "context.Context", - "*GetV2CoalShipmentsPlantAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsPlantAggregatesDataParams", + }, }, "PostV2CoalShipmentsPlantAggregatesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsPlantAggregatesDataWithResponse": { - "context.Context", - "PostV2CoalShipmentsPlantAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsPlantAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsPlantAggregatesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantAggregatesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsPlantStateAggregatesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantStateAggregatesDataWithResponse": { - "context.Context", - "*GetV2CoalShipmentsPlantStateAggregatesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsPlantStateAggregatesDataParams", + }, }, "PostV2CoalShipmentsPlantStateAggregatesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsPlantStateAggregatesDataWithResponse": { - "context.Context", - "PostV2CoalShipmentsPlantStateAggregatesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsPlantStateAggregatesDataJSONRequestBody", + }, }, "GetV2CoalShipmentsPlantStateAggregatesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsPlantStateAggregatesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CoalShipmentsReceiptsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsReceiptsDataWithResponse": { - "context.Context", - "*GetV2CoalShipmentsReceiptsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CoalShipmentsReceiptsDataParams", + }, }, "PostV2CoalShipmentsReceiptsDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CoalShipmentsReceiptsDataWithResponse": { - "context.Context", - "PostV2CoalShipmentsReceiptsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CoalShipmentsReceiptsDataJSONRequestBody", + }, }, "GetV2CoalShipmentsReceiptsFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CoalShipmentsReceiptsFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2CrudeOilImportsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CrudeOilImportsDataWithResponse": { - "context.Context", - "*GetV2CrudeOilImportsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2CrudeOilImportsDataParams", + }, }, "PostV2CrudeOilImportsDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2CrudeOilImportsDataWithResponse": { - "context.Context", - "PostV2CrudeOilImportsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2CrudeOilImportsDataJSONRequestBody", + }, }, "GetV2CrudeOilImportsFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2CrudeOilImportsFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCapacityByRegionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCapacityByRegionDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassCapacityByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassCapacityByRegionDataParams", + }, }, "PostV2DensifiedBiomassCapacityByRegionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassCapacityByRegionDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassCapacityByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassCapacityByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassCapacityByRegionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCapacityByRegionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassCharacteristicsByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassCharacteristicsByRegionDataParams", + }, }, "PostV2DensifiedBiomassCharacteristicsByRegionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassCharacteristicsByRegionDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassCharacteristicsByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassCharacteristicsByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassCharacteristicsByRegionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassExportSalesAndPriceDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassExportSalesAndPriceDataParams", + }, }, "PostV2DensifiedBiomassExportSalesAndPriceDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassExportSalesAndPriceDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassExportSalesAndPriceDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassExportSalesAndPriceDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassExportSalesAndPriceFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassFeedstocksAndCostDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassFeedstocksAndCostDataParams", + }, }, "PostV2DensifiedBiomassFeedstocksAndCostDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassFeedstocksAndCostDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassFeedstocksAndCostDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassFeedstocksAndCostDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassFeedstocksAndCostFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassInventoriesByRegionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassInventoriesByRegionDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassInventoriesByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassInventoriesByRegionDataParams", + }, }, "PostV2DensifiedBiomassInventoriesByRegionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassInventoriesByRegionDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassInventoriesByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassInventoriesByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassInventoriesByRegionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassInventoriesByRegionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassProductionByRegionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassProductionByRegionDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassProductionByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassProductionByRegionDataParams", + }, }, "PostV2DensifiedBiomassProductionByRegionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassProductionByRegionDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassProductionByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassProductionByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassProductionByRegionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassProductionByRegionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassSalesAndPriceByRegionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassSalesAndPriceByRegionDataParams", + }, }, "PostV2DensifiedBiomassSalesAndPriceByRegionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassSalesAndPriceByRegionDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassSalesAndPriceByRegionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassSalesAndPriceByRegionDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassSalesAndPriceByRegionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsDataWithResponse": { - "context.Context", - "*GetV2DensifiedBiomassWoodPelletPlantsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2DensifiedBiomassWoodPelletPlantsDataParams", + }, }, "PostV2DensifiedBiomassWoodPelletPlantsDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2DensifiedBiomassWoodPelletPlantsDataWithResponse": { - "context.Context", - "PostV2DensifiedBiomassWoodPelletPlantsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2DensifiedBiomassWoodPelletPlantsDataJSONRequestBody", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2DensifiedBiomassWoodPelletPlantsFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityElectricPowerOperationalDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityElectricPowerOperationalDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityElectricPowerOperationalDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityElectricPowerOperationalDataDataParams", + }, }, "PostV2ElectricityElectricPowerOperationalDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityElectricPowerOperationalDataDataWithResponse": { - "context.Context", - "PostV2ElectricityElectricPowerOperationalDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityElectricPowerOperationalDataDataJSONRequestBody", + }, }, "GetV2ElectricityElectricPowerOperationalDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityElectricPowerOperationalDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityFacilityFuelWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityFacilityFuelDataWithResponse": { - "context.Context", - "*GetV2ElectricityFacilityFuelDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityFacilityFuelDataParams", + }, }, "PostV2ElectricityFacilityFuelDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityFacilityFuelDataWithResponse": { - "context.Context", - "PostV2ElectricityFacilityFuelDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityFacilityFuelDataJSONRequestBody", + }, }, "GetV2ElectricityFacilityFuelFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityFacilityFuelFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityOperatingGeneratorCapacityWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityOperatingGeneratorCapacityDataWithResponse": { - "context.Context", - "*GetV2ElectricityOperatingGeneratorCapacityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityOperatingGeneratorCapacityDataParams", + }, }, "PostV2ElectricityOperatingGeneratorCapacityDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityOperatingGeneratorCapacityDataWithResponse": { - "context.Context", - "PostV2ElectricityOperatingGeneratorCapacityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityOperatingGeneratorCapacityDataJSONRequestBody", + }, }, "GetV2ElectricityOperatingGeneratorCapacityFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityOperatingGeneratorCapacityFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRetailSalesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRetailSalesDataWithResponse": { - "context.Context", - "*GetV2ElectricityRetailSalesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRetailSalesDataParams", + }, }, "PostV2ElectricityRetailSalesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRetailSalesDataWithResponse": { - "context.Context", - "PostV2ElectricityRetailSalesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRetailSalesDataJSONRequestBody", + }, }, "GetV2ElectricityRetailSalesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRetailSalesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoDailyFuelTypeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyFuelTypeDataDataParams", + }, }, "PostV2ElectricityRtoDailyFuelTypeDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyFuelTypeDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoDailyFuelTypeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyFuelTypeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyFuelTypeDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoDailyInterchangeDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyInterchangeDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoDailyInterchangeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyInterchangeDataDataParams", + }, }, "PostV2ElectricityRtoDailyInterchangeDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyInterchangeDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoDailyInterchangeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyInterchangeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyInterchangeDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyInterchangeDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoDailyRegionDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoDailyRegionDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyRegionDataDataParams", + }, }, "PostV2ElectricityRtoDailyRegionDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyRegionDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoDailyRegionDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyRegionDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyRegionDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoDailyRegionSubBaDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoDailyRegionSubBaDataDataParams", + }, }, "PostV2ElectricityRtoDailyRegionSubBaDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoDailyRegionSubBaDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoDailyRegionSubBaDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoDailyRegionSubBaDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoDailyRegionSubBaDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoFuelTypeDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoFuelTypeDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoFuelTypeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoFuelTypeDataDataParams", + }, }, "PostV2ElectricityRtoFuelTypeDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoFuelTypeDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoFuelTypeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoFuelTypeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoFuelTypeDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoFuelTypeDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoInterchangeDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoInterchangeDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoInterchangeDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoInterchangeDataDataParams", + }, }, "PostV2ElectricityRtoInterchangeDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoInterchangeDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoInterchangeDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoInterchangeDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoInterchangeDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoInterchangeDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoRegionDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoRegionDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoRegionDataDataParams", + }, }, "PostV2ElectricityRtoRegionDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoRegionDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoRegionDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoRegionDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoRegionDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityRtoRegionSubBaDataWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionSubBaDataDataWithResponse": { - "context.Context", - "*GetV2ElectricityRtoRegionSubBaDataDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityRtoRegionSubBaDataDataParams", + }, }, "PostV2ElectricityRtoRegionSubBaDataDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityRtoRegionSubBaDataDataWithResponse": { - "context.Context", - "PostV2ElectricityRtoRegionSubBaDataDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityRtoRegionSubBaDataDataJSONRequestBody", + }, }, "GetV2ElectricityRtoRegionSubBaDataFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityRtoRegionSubBaDataFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricitySepWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesCapabilityDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesCapabilityDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesCapabilityDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesCapabilityDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesCapabilityDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesCapabilityDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesCapabilityFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesMetersWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesMetersDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesMetersDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesMetersDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesMetersDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesMetersDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesMetersDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesMetersDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesMetersFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesMetersFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesNetMeteringDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesNetMeteringDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesNetMeteringDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesNetMeteringDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesNetMeteringDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesNetMeteringDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesNetMeteringFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesSourceDispositionDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesSourceDispositionDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesSourceDispositionDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesSourceDispositionDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesSourceDispositionDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesSourceDispositionDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSourceDispositionFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryDataWithResponse": { - "context.Context", - "*GetV2ElectricityStateElectricityProfilesSummaryDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2ElectricityStateElectricityProfilesSummaryDataParams", + }, }, "PostV2ElectricityStateElectricityProfilesSummaryDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2ElectricityStateElectricityProfilesSummaryDataWithResponse": { - "context.Context", - "PostV2ElectricityStateElectricityProfilesSummaryDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2ElectricityStateElectricityProfilesSummaryDataJSONRequestBody", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2ElectricityStateElectricityProfilesSummaryFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerIeoWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerConstructWithResponse": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "string", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerGetDataWithResponse": { - "context.Context", - "Route1", - "*EIAAPIControllersDatasetAeoIeoIeoControllerGetDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "params", + Type: "*EIAAPIControllersDatasetAeoIeoIeoControllerGetDataParams", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataWithBodyWithResponse": { - "context.Context", - "Route1", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataWithResponse": { - "context.Context", - "Route1", - "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "body", + Type: "EIAAPIControllersDatasetAeoIeoIeoControllerPostDataJSONRequestBody", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetWithResponse": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "string", + }, }, "EIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetIdWithResponse": { - "context.Context", - "Route1", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2InternationalWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2InternationalDataWithResponse": { - "context.Context", - "*GetV2InternationalDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2InternationalDataParams", + }, }, "PostV2InternationalDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2InternationalDataWithResponse": { - "context.Context", - "PostV2InternationalDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2InternationalDataJSONRequestBody", + }, }, "GetV2InternationalFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2InternationalFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NaturalGasWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NaturalGasRoute1WithResponse": { - "context.Context", - "Route1", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, }, "GetV2NaturalGasRoute1Route2WithResponse": { - "context.Context", - "Route1", - "Route2", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, }, "GetV2NaturalGasRoute1Route2DataWithResponse": { - "context.Context", - "Route1", - "Route2", - "*GetV2NaturalGasRoute1Route2DataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "params", + Type: "*GetV2NaturalGasRoute1Route2DataParams", + }, }, "PostV2NaturalGasRoute1Route2DataWithBodyWithResponse": { - "context.Context", - "Route1", - "Route2", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NaturalGasRoute1Route2DataWithResponse": { - "context.Context", - "Route1", - "Route2", - "PostV2NaturalGasRoute1Route2DataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "body", + Type: "PostV2NaturalGasRoute1Route2DataJSONRequestBody", + }, }, "GetV2NaturalGasRoute1Route2FacetWithResponse": { - "context.Context", - "Route1", - "Route2", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, }, "GetV2NaturalGasRoute1Route2FacetFacetIdWithResponse": { - "context.Context", - "Route1", - "Route2", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "route1", + Type: "Route1", + }, + { + Name: "route2", + Type: "Route2", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NuclearOutagesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesDataWithResponse": { - "context.Context", - "*GetV2NuclearOutagesFacilityNuclearOutagesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesFacilityNuclearOutagesDataParams", + }, }, "PostV2NuclearOutagesFacilityNuclearOutagesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NuclearOutagesFacilityNuclearOutagesDataWithResponse": { - "context.Context", - "PostV2NuclearOutagesFacilityNuclearOutagesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesFacilityNuclearOutagesDataJSONRequestBody", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesFacilityNuclearOutagesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesDataWithResponse": { - "context.Context", - "*GetV2NuclearOutagesGeneratorNuclearOutagesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesGeneratorNuclearOutagesDataParams", + }, }, "PostV2NuclearOutagesGeneratorNuclearOutagesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NuclearOutagesGeneratorNuclearOutagesDataWithResponse": { - "context.Context", - "PostV2NuclearOutagesGeneratorNuclearOutagesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesGeneratorNuclearOutagesDataJSONRequestBody", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesGeneratorNuclearOutagesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2NuclearOutagesUsNuclearOutagesWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesUsNuclearOutagesDataWithResponse": { - "context.Context", - "*GetV2NuclearOutagesUsNuclearOutagesDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2NuclearOutagesUsNuclearOutagesDataParams", + }, }, "PostV2NuclearOutagesUsNuclearOutagesDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2NuclearOutagesUsNuclearOutagesDataWithResponse": { - "context.Context", - "PostV2NuclearOutagesUsNuclearOutagesDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2NuclearOutagesUsNuclearOutagesDataJSONRequestBody", + }, }, "GetV2NuclearOutagesUsNuclearOutagesFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2NuclearOutagesUsNuclearOutagesFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "GetV2SedsWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SedsDataWithResponse": { - "context.Context", - "*GetV2SedsDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2SedsDataParams", + }, }, "PostV2SedsDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2SedsDataWithResponse": { - "context.Context", - "PostV2SedsDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2SedsDataJSONRequestBody", + }, }, "GetV2SedsFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SedsFacetFacetIdWithResponse": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "string", + }, }, "GetV2SteoWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SteoDataWithResponse": { - "context.Context", - "*GetV2SteoDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2SteoDataParams", + }, }, "PostV2SteoDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2SteoDataWithResponse": { - "context.Context", - "PostV2SteoDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2SteoDataJSONRequestBody", + }, }, "GetV2SteoFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2SteoFacetFacetIdWithResponse": { - "context.Context", - "string", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "string", + }, }, "GetV2TotalEnergyWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2TotalEnergyDataWithResponse": { - "context.Context", - "*GetV2TotalEnergyDataParams", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "params", + Type: "*GetV2TotalEnergyDataParams", + }, }, "PostV2TotalEnergyDataWithBodyWithResponse": { - "context.Context", - "string", - "io.Reader", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "contentType", + Type: "string", + }, + { + Name: "body", + Type: "io.Reader", + }, }, "PostV2TotalEnergyDataWithResponse": { - "context.Context", - "PostV2TotalEnergyDataJSONRequestBody", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "body", + Type: "PostV2TotalEnergyDataJSONRequestBody", + }, }, "GetV2TotalEnergyFacetWithResponse": { - "context.Context", + { + Name: "ctx", + Type: "context.Context", + }, }, "GetV2TotalEnergyFacetFacetIdWithResponse": { - "context.Context", - "FacetId", + { + Name: "ctx", + Type: "context.Context", + }, + { + Name: "facetId", + Type: "FacetId", + }, }, "ParseGetV2Response": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2AeoResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2AeoRoute1Response": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2AeoRoute1DataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2AeoRoute1DataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2AeoRoute1FacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2AeoRoute1FacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAggregatesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2Co2EmissionsCo2EmissionsAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAggregatesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAggregatesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2Co2EmissionsCo2EmissionsAndCarbonCoefficientsFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalAggregateProductionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalAggregateProductionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalAggregateProductionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalAggregateProductionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalAggregateProductionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalConsumptionAndQualityResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalConsumptionAndQualityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalConsumptionAndQualityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalConsumptionAndQualityFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalConsumptionAndQualityFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalExportsImportsQuantityPriceResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalExportsImportsQuantityPriceDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalExportsImportsQuantityPriceDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalExportsImportsQuantityPriceFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalExportsImportsQuantityPriceFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMarketSalesPriceResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMarketSalesPriceDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalMarketSalesPriceDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMarketSalesPriceFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMarketSalesPriceFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMineProductionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMineProductionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalMineProductionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMineProductionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalMineProductionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalPriceByRankResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalPriceByRankDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalPriceByRankDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalPriceByRankFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalPriceByRankFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalReservesCapacityResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalReservesCapacityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalReservesCapacityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalReservesCapacityFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalReservesCapacityFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsByMineByPlantResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsByMineByPlantDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalShipmentsByMineByPlantDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsByMineByPlantFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsByMineByPlantFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineAggregatesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalShipmentsMineAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineAggregatesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineAggregatesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineStateAggregatesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineStateAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalShipmentsMineStateAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineStateAggregatesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsMineStateAggregatesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantAggregatesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalShipmentsPlantAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantAggregatesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantAggregatesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantStateAggregatesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantStateAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalShipmentsPlantStateAggregatesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantStateAggregatesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsPlantStateAggregatesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsReceiptsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsReceiptsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CoalShipmentsReceiptsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsReceiptsFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CoalShipmentsReceiptsFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CrudeOilImportsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CrudeOilImportsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2CrudeOilImportsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CrudeOilImportsFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2CrudeOilImportsFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCapacityByRegionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCapacityByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassCapacityByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCapacityByRegionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCapacityByRegionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCharacteristicsByRegionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCharacteristicsByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassCharacteristicsByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCharacteristicsByRegionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassCharacteristicsByRegionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassExportSalesAndPriceResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassExportSalesAndPriceDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassExportSalesAndPriceDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassExportSalesAndPriceFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassExportSalesAndPriceFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassFeedstocksAndCostResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassFeedstocksAndCostDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassFeedstocksAndCostDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassFeedstocksAndCostFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassFeedstocksAndCostFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassInventoriesByRegionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassInventoriesByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassInventoriesByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassInventoriesByRegionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassInventoriesByRegionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassProductionByRegionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassProductionByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassProductionByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassProductionByRegionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassProductionByRegionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassSalesAndPriceByRegionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassSalesAndPriceByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassSalesAndPriceByRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassSalesAndPriceByRegionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassSalesAndPriceByRegionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassWoodPelletPlantsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassWoodPelletPlantsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2DensifiedBiomassWoodPelletPlantsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassWoodPelletPlantsFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2DensifiedBiomassWoodPelletPlantsFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityElectricPowerOperationalDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityElectricPowerOperationalDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityElectricPowerOperationalDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityElectricPowerOperationalDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityElectricPowerOperationalDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityFacilityFuelResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityFacilityFuelDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityFacilityFuelDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityFacilityFuelFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityFacilityFuelFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityOperatingGeneratorCapacityResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityOperatingGeneratorCapacityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityOperatingGeneratorCapacityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityOperatingGeneratorCapacityFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityOperatingGeneratorCapacityFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRetailSalesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRetailSalesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRetailSalesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRetailSalesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRetailSalesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyFuelTypeDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyFuelTypeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoDailyFuelTypeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyFuelTypeDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyFuelTypeDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyInterchangeDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyInterchangeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoDailyInterchangeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyInterchangeDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyInterchangeDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoDailyRegionDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionSubBaDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionSubBaDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoDailyRegionSubBaDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionSubBaDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoDailyRegionSubBaDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoFuelTypeDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoFuelTypeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoFuelTypeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoFuelTypeDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoFuelTypeDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoInterchangeDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoInterchangeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoInterchangeDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoInterchangeDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoInterchangeDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoRegionDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionSubBaDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionSubBaDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityRtoRegionSubBaDataDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionSubBaDataFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityRtoRegionSubBaDataFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricitySepResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesCapabilityResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesCapabilityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesCapabilityDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesCapabilityFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesCapabilityFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesEmissionsByStateByFuelDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEmissionsByStateByFuelFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEnergyEfficiencyResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEnergyEfficiencyDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesEnergyEfficiencyDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesEnergyEfficiencyFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesMetersResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesMetersDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesMetersDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesMetersFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesMetersFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesNetMeteringResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesNetMeteringDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesNetMeteringDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesNetMeteringFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesNetMeteringFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSourceDispositionResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSourceDispositionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesSourceDispositionDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSourceDispositionFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSourceDispositionFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSummaryResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSummaryDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2ElectricityStateElectricityProfilesSummaryDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSummaryFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2ElectricityStateElectricityProfilesSummaryFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseEIAAPIControllersDatasetAeoIeoIeoControllerIeoResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseEIAAPIControllersDatasetAeoIeoIeoControllerConstructResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseEIAAPIControllersDatasetAeoIeoIeoControllerGetDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseEIAAPIControllersDatasetAeoIeoIeoControllerPostDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseEIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseEIAAPIControllersDatasetAeoIeoIeoControllerRouteFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2InternationalResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2InternationalDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2InternationalDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2InternationalFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2InternationalFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NaturalGasResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NaturalGasRoute1Response": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NaturalGasRoute1Route2Response": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NaturalGasRoute1Route2DataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2NaturalGasRoute1Route2DataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NaturalGasRoute1Route2FacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NaturalGasRoute1Route2FacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesFacilityNuclearOutagesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesFacilityNuclearOutagesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2NuclearOutagesFacilityNuclearOutagesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesFacilityNuclearOutagesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesFacilityNuclearOutagesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesGeneratorNuclearOutagesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesGeneratorNuclearOutagesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2NuclearOutagesGeneratorNuclearOutagesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesGeneratorNuclearOutagesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesGeneratorNuclearOutagesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesUsNuclearOutagesResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesUsNuclearOutagesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2NuclearOutagesUsNuclearOutagesDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesUsNuclearOutagesFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2NuclearOutagesUsNuclearOutagesFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SedsResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SedsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2SedsDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SedsFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SedsFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SteoResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SteoDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2SteoDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SteoFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2SteoFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2TotalEnergyResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2TotalEnergyDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParsePostV2TotalEnergyDataResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2TotalEnergyFacetResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "ParseGetV2TotalEnergyFacetFacetIdResponse": { - "*http.Response", + { + Name: "rsp", + Type: "*http.Response", + }, }, "GetFuncParamType": { - "string", - "int", + { + Name: "funcName", + Type: "string", + }, + { + Name: "idx", + Type: "int", + }, }, } -func GetFuncParamType(funcName string, idx int) string { +func GetFuncParamType(funcName string, idx int) *FunctionParam { + var param FunctionParam + funcParams, exists := FunctionParams[funcName] if !exists { - return "" + return nil } if idx < len(funcParams) { - return funcParams[idx] + param = funcParams[idx] } - return "" + return ¶m } diff --git a/api/funcmapper/funcmapper.go b/api/funcmapper/funcmapper.go index e5c1846..b3cef04 100644 --- a/api/funcmapper/funcmapper.go +++ b/api/funcmapper/funcmapper.go @@ -30,33 +30,49 @@ var ParseFunctionsMap = map[string]interface{}{ type FunctionParamInfo struct { FunctionName string - Params []string + Params []FunctionParam +} + +type FunctionParam struct { + Name string + Type string } const tmplFuncParams = ` // List of functions in eiaapi package // with slice of arg types as strings -var FunctionParams = map[string][]string{ + +type FunctionParam struct { + Name string + Type string +} + +var FunctionParams = map[string][]FunctionParam{ {{- range .}} "{{ .FunctionName }}": { {{- range .Params }} - {{ . | printf "\"%s\"" }}, + { + Name: {{ .Name | printf "\"%s\"" }}, + Type: {{ .Type | printf "\"%s\"" }}, + }, {{- end }} }, {{- end}} } -func GetFuncParamType(funcName string, idx int) string { +func GetFuncParamType(funcName string, idx int) *FunctionParam { + var param FunctionParam + funcParams, exists := FunctionParams[funcName] if !exists { - return "" + return nil } if idx < len(funcParams) { - return funcParams[idx] + param = funcParams[idx] } - return "" + return ¶m } ` @@ -88,7 +104,7 @@ func main() { // Load up params for all functions if funcDecl.Name.IsExported() { - paramTypes := make([]string, 0) + paramTypes := make([]FunctionParam, 0) if funcDecl.Type.Params != nil { for _, param := range funcDecl.Type.Params.List { // Convert the type expression to a string representation @@ -98,8 +114,11 @@ func main() { continue } // Append the type once for each name in the parameter - for range param.Names { - paramTypes = append(paramTypes, typeStr) + for _, name := range param.Names { + paramTypes = append(paramTypes, FunctionParam{ + Name: name.Name, + Type: typeStr, + }) } } } diff --git a/pkg/eia/eia_logging.go b/pkg/eia/eia_logging.go index d8608f7..7834f34 100644 --- a/pkg/eia/eia_logging.go +++ b/pkg/eia/eia_logging.go @@ -12,11 +12,15 @@ import ( func newLoggingMiddleware(logger *zerolog.Logger, level zerolog.Level) eiaapi.RequestEditorFn { return func(_ context.Context, req *http.Request) error { + // Don't log api_key + params := req.URL.Query() + delete(params, "api_key") + logger.WithLevel(level). Str("method", req.Method). Str("host", req.URL.Host). Str("path", req.URL.Path). - Str("query", req.Form.Encode()). + Str("query", params.Encode()). Time("timestamp", time.Now()). Send() return nil diff --git a/pkg/eia/eia_reflection.go b/pkg/eia/eia_reflection.go index 15e3c8b..a76837c 100644 --- a/pkg/eia/eia_reflection.go +++ b/pkg/eia/eia_reflection.go @@ -2,6 +2,7 @@ package eia import ( "context" + "encoding/json" "errors" "fmt" "net/http" @@ -19,20 +20,25 @@ import ( type MethodSubs struct { TypedParams map[reflect.Type]reflect.Value // Replace field of specific type with value, must be ptr to type StrTypedParams map[string]reflect.Value // Parameter types by string name from eiaapi mappings + StrNamedParams map[string]reflect.Value // Parameter names by string name from eiaapi mappings RequestEditorFns []eiaapi.RequestEditorFn // Optional request editor functions } +var yearStringVal = reflect.ValueOf(eiaapi.Route1( + strconv.Itoa(time.Now().AddDate(-1, 0, 0).Year()), +)) + // By default replace all routes with a string year // To be more specific, set NameParams, which will overwrite // NameContainsParams var defaultMethodSubs = MethodSubs{ + StrNamedParams: map[string]reflect.Value{ + "route1": yearStringVal, + "route2": yearStringVal, + }, StrTypedParams: map[string]reflect.Value{ - "Route1": reflect.ValueOf(eiaapi.Route1( - strconv.Itoa(time.Now().AddDate(-1, 0, 0).Year()), - )), - "Route2": reflect.ValueOf(eiaapi.Route1( - strconv.Itoa(time.Now().AddDate(-1, 0, 0).Year()), - )), + "Route1": yearStringVal, + "Route2": yearStringVal, }, } @@ -53,27 +59,37 @@ func (client *Client) GetRoute(ctx context.Context, route string, subs *MethodSu } args := prepMethodArgs(method, route, subs) + results := method.Call(args) resp, err := getResponse(results) if err != nil { return nil, err } - result, err := parseResponse(parser, resp) + result, err := ParseResponse(&ParseOpts{ + Parser: parser, + Resp: resp, + BodyOnly: true, + }) if err != nil { return nil, err } - desc, ok := result.Interface().(*eiaapi.FinalRouteResponseContainer) - if !ok { - return nil, errors.New("indescribable route returned") + // The api doesn't actually return what the swagger spec + // tells you it is going to return, so we need to do this + // manually for routes + frr := new(eiaapi.FinalRouteResponse) + if err = json.Unmarshal( + result.Interface().([]uint8), frr, + ); err != nil { + return nil, err } - if desc.Response == nil { + if frr.Response == nil { return nil, errors.New("no route response received") } - return desc.Response.Response, nil + return frr.Response, nil } // Given an API route and a facet ID, retrieve information about the facet @@ -105,7 +121,11 @@ func (client *Client) GetFacet(ctx context.Context, route string, facet string, return nil, err } - result, err := parseResponse(parser, resp) + result, err := ParseResponse(&ParseOpts{ + Parser: parser, + Resp: resp, + JsonOnly: true, + }) if err != nil { return nil, err } @@ -154,7 +174,11 @@ func (client *Client) GetFacets(ctx context.Context, route string, subs *MethodS return nil, err } - result, err := parseResponse(parser, resp) + result, err := ParseResponse(&ParseOpts{ + Parser: parser, + Resp: resp, + JsonOnly: true, + }) if err != nil { return nil, err } @@ -229,10 +253,17 @@ func prepMethodArgs(method reflect.Value, name string, subs *MethodSubs) []refle break } - // Perform type lookups by string match - if paramType := eiaapi.GetFuncParamType(name, i); paramType != "" { + // Perform type lookups by string match on either the name of the + // parameter, or the type of the parameter, as a string value + if paramType := eiaapi.GetFuncParamType(name, i); paramType != nil { for name, val := range subs.StrTypedParams { - if paramType == name { + if paramType.Type == name { + args = append(args, val) + goto next + } + } + for name, val := range subs.StrNamedParams { + if paramType.Name == name { args = append(args, val) goto next } @@ -263,10 +294,21 @@ func prepMethodArgs(method reflect.Value, name string, subs *MethodSubs) []refle return args } -func parseResponse(parser reflect.Value, resp *http.Response) (reflect.Value, error) { +// If jsonOnly is set, only the parsed value will be returned in a field called JSON200 +// If there are unmarshaling issues due to code generated from the crappy swagger spec, +// you may have to manually unmarshal the "Body" field into the correct type. Setting jsonOnly +// to false will return the entire thing rather than just the JSON200 field. +type ParseOpts struct { + Parser reflect.Value + Resp *http.Response + JsonOnly bool // Used when parser can correctly unmarshal into type + BodyOnly bool // Used when API response does not contain openapi spec suggested type +} + +func ParseResponse(opts *ParseOpts) (reflect.Value, error) { var result reflect.Value - results := parser.Call([]reflect.Value{reflect.ValueOf(resp)}) + results := opts.Parser.Call([]reflect.Value{reflect.ValueOf(opts.Resp)}) if len(results) != 2 { return result, errors.New("unexpected response while parsing response") } @@ -283,9 +325,20 @@ func parseResponse(parser reflect.Value, resp *http.Response) (reflect.Value, er return result, fmt.Errorf("unexpected parse result kind %s", result.Kind().String()) } - field := result.FieldByName("JSON200") + if !opts.JsonOnly && !opts.BodyOnly { + return result, nil + } + + var field reflect.Value + + if opts.JsonOnly { + field = result.FieldByName("JSON200") + } else if opts.BodyOnly { + field = result.FieldByName("Body") + } + if !field.IsValid() { - return result, errors.New("invalid facet data field in response") + return result, errors.New("invalid response container") } return field, nil