Skip to content

Commit

Permalink
fix(Sdk): Fixed the AsyncApiSubscriptionLifetimeDefinition
Browse files Browse the repository at this point in the history
Signed-off-by: Charles d'Avernas <[email protected]>
  • Loading branch information
cdavernas committed Jan 10, 2025
1 parent 9818d65 commit ccbd26a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ public record AsyncApiSubscriptionLifetimeDefinition
/// Required if <see cref="Amount"/> and <see cref="Until"/> have not been set.
/// /// </summary>
[DataMember(Name = "while", Order = 3), JsonPropertyName("while"), JsonPropertyOrder(3), YamlMember(Alias = "while", Order = 3)]
public virtual int? While { get; set; }
public virtual string? While { get; set; }

/// <summary>
/// Gets/sets a runtime expression, if any, used to determine until when to consume messages..<para></para>
/// Required if <see cref="Amount"/> and <see cref="While"/> have not been set.
/// /// </summary>
[DataMember(Name = "until", Order = 4), JsonPropertyName("until"), JsonPropertyOrder(4), YamlMember(Alias = "until", Order = 4)]
public virtual int? Until { get; set; }
public virtual string? Until { get; set; }

}

0 comments on commit ccbd26a

Please sign in to comment.