Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
fix: use pascalcase properties in codec
Browse files Browse the repository at this point in the history
  • Loading branch information
gigobyte committed May 4, 2020
1 parent 7767c62 commit 39cc968
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/sections/sellers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ interface MarketplaceParticipationsResponse {
}

const MarketplaceParticipations = Codec.interface({
participations: ensureArray(
Participations: ensureArray(
Codec.interface({
marketplaceId: string,
sellerId: string,
hasSellerSuspendedListings: mwsBoolean,
MarketplaceId: string,
SellerId: string,
HasSellerSuspendedListings: mwsBoolean,
}),
),
marketplaces: ensureArray(
Marketplaces: ensureArray(
Codec.interface({
marketplaceId: string,
name: string,
defaultCountryCode: string,
defaultCurrencyCode: string,
defaultLanguageCode: string,
domainName: string,
MarketplaceId: string,
Name: string,
DefaultCountryCode: string,
DefaultCurrencyCode: string,
DefaultLanguageCode: string,
DomainName: string,
}),
),
})
Expand Down

0 comments on commit 39cc968

Please sign in to comment.