Skip to content

Commit 6148865

Browse files
authored
Merge pull request #259 from tank104/FixAdjustmentBuyerPrice
2 parents e84ee4d + a66d0e3 commit 6148865

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/FikaAmazonAPI/ConstructFeed/Messages/OrderAdjustmentMessage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ public class AdjustedItem
4848
public class AdjustmentBuyerPrice
4949
{
5050
[XmlElement(ElementName = "Type")]
51-
AdjustmentBuyerTypePrice BuyerPriceType { get; set; }
51+
public AdjustmentBuyerTypePrice BuyerPriceType { get; set; }
5252

5353
[XmlElement(ElementName = "Amount")]
54-
CurrencyAmount Amount { get; set; }
54+
public CurrencyAmount Amount { get; set; }
5555
}
5656

5757
public class PromotionAdjustments

Source/FikaAmazonAPI/Services/AuthorizationService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public async Task<TokenResponse> GetAccessTokenFromCodeAsync(string code, string
3030
return await TokenGeneration.GetAccessTokenFromCodeAsync(AmazonCredential.ClientId, AmazonCredential.ClientSecret, code, appRedirectUri);
3131
}
3232

33-
public async Task<TokenResponse> GetRrefreshTokenFromCodeAsync(string code, string appRedirectUri)
33+
public async Task<TokenResponse> GetRefreshTokenFromCodeAsync(string code, string appRedirectUri)
3434
{
3535
return await TokenGeneration.GetAccessTokenFromCodeAsync(AmazonCredential.ClientId, AmazonCredential.ClientSecret, code, appRedirectUri, grant_type: "authorization_code");
3636
}

0 commit comments

Comments
 (0)