Skip to content

Commit

Permalink
remove obsolete marking
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Nov 1, 2022
1 parent 608e43f commit a76fa70
Show file tree
Hide file tree
Showing 14 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ public void WithMethods(HttpRequestMessage request, string httpMethod, string ur
Assert.Equal(uri.ToLower(), request.RequestUri.ToString().ToLower());
}

[Obsolete]
public static IEnumerable<object[]> GetData()
{
return new List<object[]> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[System.Obsolete]

public partial class Destination : IDestination
{
public string Type { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.AzureEventGridDestination))]
[System.Obsolete]
public partial interface IAzureEventGridDestination : IDestination
{
string Uri { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.AzureServiceBusDestination))]
[System.Obsolete]
public partial interface IAzureServiceBusDestination : IDestination
{
string ConnectionString { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.EventBridgeDestination))]
[System.Obsolete]
public partial interface IEventBridgeDestination : IDestination
{
string Region { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.GoogleCloudPubSubDestination))]
[System.Obsolete]
public partial interface IGoogleCloudPubSubDestination : IDestination
{
string ProjectId { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.SnsDestination))]
[System.Obsolete]
public partial interface ISnsDestination : IDestination
{
string AccessKey { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace commercetools.Sdk.Api.Models.Subscriptions
{
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.SqsDestination))]
[System.Obsolete]
public partial interface ISqsDestination : IDestination
{
string AccessKey { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public partial interface ISubscription : IBaseResource

List<IChangeSubscription> Changes { get; set; }

[Obsolete]
IDestination Destination { get; set; }

string Key { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ namespace commercetools.Sdk.Api.Models.Subscriptions
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Subscriptions.SubscriptionChangeDestinationAction))]
public partial interface ISubscriptionChangeDestinationAction : ISubscriptionUpdateAction
{
[System.Obsolete]
IDestination Destination { get; set; }

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ public partial interface ISubscriptionDraft
{
List<IChangeSubscription> Changes { get; set; }

[System.Obsolete]
IDestination Destination { get; set; }

string Key { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public partial class Subscription : ISubscription

public List<IChangeSubscription> Changes { get; set; }

[Obsolete]
public IDestination Destination { get; set; }

public string Key { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ public partial class SubscriptionChangeDestinationAction : ISubscriptionChangeDe
{
public string Action { get; set; }

[System.Obsolete]
public IDestination Destination { get; set; }
public SubscriptionChangeDestinationAction()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ public partial class SubscriptionDraft : ISubscriptionDraft
{
public List<IChangeSubscription> Changes { get; set; }

[System.Obsolete]
public IDestination Destination { get; set; }

public string Key { get; set; }
Expand Down

0 comments on commit a76fa70

Please sign in to comment.