Skip to content

Commit

Permalink
fix(specs): ingestion expected and received events type [skip-bc] (ge…
Browse files Browse the repository at this point in the history
…nerated)

algolia/api-clients-automation#4356

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Jan 13, 2025
1 parent 004be40 commit ee58a38
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions algoliasearch/Models/Ingestion/RunProgress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,30 @@ public partial class RunProgress
/// <summary>
/// Initializes a new instance of the RunProgress class.
/// </summary>
public RunProgress()
[JsonConstructor]
public RunProgress() { }
/// <summary>
/// Initializes a new instance of the RunProgress class.
/// </summary>
/// <param name="expectedNbOfEvents">expectedNbOfEvents (required).</param>
/// <param name="receivedNbOfEvents">receivedNbOfEvents (required).</param>
public RunProgress(int expectedNbOfEvents, int receivedNbOfEvents)
{
ExpectedNbOfEvents = expectedNbOfEvents;
ReceivedNbOfEvents = receivedNbOfEvents;
}

/// <summary>
/// Gets or Sets ExpectedNbOfEvents
/// </summary>
[JsonPropertyName("expectedNbOfEvents")]
public int? ExpectedNbOfEvents { get; set; }
public int ExpectedNbOfEvents { get; set; }

/// <summary>
/// Gets or Sets ReceivedNbOfEvents
/// </summary>
[JsonPropertyName("receivedNbOfEvents")]
public int? ReceivedNbOfEvents { get; set; }
public int ReceivedNbOfEvents { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down

0 comments on commit ee58a38

Please sign in to comment.