Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ public enum ShipmentStatus
/// Enum READY_TO_SHIP for value: READY_TO_SHIP
/// </summary>
[EnumMember(Value = "READY_TO_SHIP")]
READY_TO_SHIP = 11
READY_TO_SHIP = 11,
[EnumMember(Value = "ABANDONED")]
ABANDONED = 12,
[EnumMember(Value = "MIXED")]
MIXED = 13,
[EnumMember(Value = "UNCONFIRMED")]
UNCONFIRMED = 14
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInboundv20240320
{
/// <summary>
/// Identifies type of Delivery Window Availability. Values: AVAILABLE, CONGESTED
/// Identifies type of Delivery Window Availability. Values: AVAILABLE, CONGESTED, BLOCKED, DISCOUNTED
/// </summary>
/// <value>Identifies type of Delivery Window Availability. Values: AVAILABLE, CONGESTED

Expand All @@ -26,7 +26,11 @@ public enum AvailabilityType
AVAILABLE = 1,

[EnumMember(Value = "CONGESTED")]
CONGESTED = 2
CONGESTED = 2,
[EnumMember(Value = "BLOCKED")]
BLOCKED = 3,
[EnumMember(Value = "DISCOUNTED")]
DISCOUNTED = 4
}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
using FikaAmazonAPI.Search;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
using static FikaAmazonAPI.AmazonSpApiSDK.Models.Finances.Model.RelatedIdentifier;

namespace FikaAmazonAPI.Parameter.Finance
{
Expand All @@ -8,8 +11,20 @@ public class ParameterListFinancialTransactions20240619 : ParameterBased
public DateTime postedAfter { get; set; }
public DateTime? postedBefore { get; set; }
public string? marketplaceId { get; set; }
/// <summary>
/// The status of the transaction.Possible values:
/// `DEFERRED`: the transaction is currently deferred.
/// `RELEASED`: the transaction is currently released.
/// `DEFERRED_RELEASED`: the transaction was deferred in the past, but is now released. The status of a deferred transaction is updated to `DEFERRED_RELEASED` when the transaction is released.
/// </summary>
public string? transactionStatus { get; set; }
/// <summary>
/// Possible values:`FINANCIAL_EVENT_GROUP_ID`: the financial event group ID associated with the transaction.
///*Note: FINANCIAL_EVENT_GROUP_ID is the only `relatedIdentifier` with filtering capabilities at the moment. While other `relatedIdentifier` values will be included in the response when available, they cannot be used for filtering purposes.
/// </summary>
public string? relatedIdentifierName { get; set; }
public string? relatedIdentifierValue { get; set; }
public string nextToken { get; set; }
public int? MaxNumberOfPages { get; set; }
}

}
3 changes: 2 additions & 1 deletion Source/FikaAmazonAPI/Utils/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,8 @@ public enum ReportTypes
GET_EPR_QUARTERLY_REPORTS,
GET_EPR_ANNUAL_REPORTS,
GET_BRAND_ANALYTICS_SEARCH_CATALOG_PERFORMANCE_REPORT,
GET_BRAND_ANALYTICS_SEARCH_QUERY_PERFORMANCE_REPORT
GET_BRAND_ANALYTICS_SEARCH_QUERY_PERFORMANCE_REPORT,
GET_DATE_RANGE_FINANCIAL_HOLDS_DATA
}
[JsonConverter(typeof(StringEnumConverter))]
public enum ContentType
Expand Down
Loading