Skip to content

Commit 40e3fb3

Browse files
algolia-botsbellone
andcommitted
fix(specs): ingestion small fix + added source input descriptions (generated)
algolia/api-clients-automation#5515 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Sylvain Bellone <[email protected]>
1 parent 77c2c1f commit 40e3fb3

11 files changed

+10
-19
lines changed

algoliasearch/Models/Ingestion/AuthenticationUpdate.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ public partial class AuthenticationUpdate
2222
[JsonPropertyName("type")]
2323
public AuthenticationType? Type { get; set; }
2424

25-
/// <summary>
26-
/// Gets or Sets Platform
27-
/// </summary>
28-
[JsonPropertyName("platform")]
29-
public Platform? Platform { get; set; }
30-
3125
/// <summary>
3226
/// Initializes a new instance of the AuthenticationUpdate class.
3327
/// </summary>
@@ -56,7 +50,6 @@ public override string ToString()
5650
sb.Append("class AuthenticationUpdate {\n");
5751
sb.Append(" Type: ").Append(Type).Append("\n");
5852
sb.Append(" Name: ").Append(Name).Append("\n");
59-
sb.Append(" Platform: ").Append(Platform).Append("\n");
6053
sb.Append(" Input: ").Append(Input).Append("\n");
6154
sb.Append("}\n");
6255
return sb.ToString();
@@ -85,7 +78,6 @@ public override bool Equals(object obj)
8578

8679
return (Type == input.Type || Type.Equals(input.Type))
8780
&& (Name == input.Name || (Name != null && Name.Equals(input.Name)))
88-
&& (Platform == input.Platform || Platform.Equals(input.Platform))
8981
&& (Input == input.Input || (Input != null && Input.Equals(input.Input)));
9082
}
9183

@@ -103,7 +95,6 @@ public override int GetHashCode()
10395
{
10496
hashCode = (hashCode * 59) + Name.GetHashCode();
10597
}
106-
hashCode = (hashCode * 59) + Platform.GetHashCode();
10798
if (Input != null)
10899
{
109100
hashCode = (hashCode * 59) + Input.GetHashCode();

algoliasearch/Models/Ingestion/SourceBigCommerce.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceBigCommerce
15+
/// Specific configuration attributes of a `bigcommerce` source.
1616
/// </summary>
1717
public partial class SourceBigCommerce
1818
{

algoliasearch/Models/Ingestion/SourceBigQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceBigQuery
15+
/// Specific configuration attributes of a `bigquery` source.
1616
/// </summary>
1717
public partial class SourceBigQuery
1818
{

algoliasearch/Models/Ingestion/SourceCSV.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceCSV
15+
/// Specific configuration attributes of a `csv` source.
1616
/// </summary>
1717
public partial class SourceCSV
1818
{

algoliasearch/Models/Ingestion/SourceCommercetools.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceCommercetools
15+
/// Specific configuration attributes of a `commercetools` source.
1616
/// </summary>
1717
public partial class SourceCommercetools
1818
{

algoliasearch/Models/Ingestion/SourceDocker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceDocker
15+
/// Specific configuration attributes of a `docker` source.
1616
/// </summary>
1717
public partial class SourceDocker
1818
{

algoliasearch/Models/Ingestion/SourceGA4BigQueryExport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceGA4BigQueryExport
15+
/// Specific configuration attributes of a `ga4BigqueryExport` source.
1616
/// </summary>
1717
public partial class SourceGA4BigQueryExport
1818
{

algoliasearch/Models/Ingestion/SourceJSON.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceJSON
15+
/// Specific configuration attributes of a `json` source.
1616
/// </summary>
1717
public partial class SourceJSON
1818
{

algoliasearch/Models/Ingestion/SourceUpdateCommercetools.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceUpdateCommercetools
15+
/// Specific configuration attributes of a `commercetools` source.
1616
/// </summary>
1717
public partial class SourceUpdateCommercetools
1818
{

algoliasearch/Models/Ingestion/SourceUpdateDocker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// SourceUpdateDocker
15+
/// Specific configuration attributes of a `docker` source.
1616
/// </summary>
1717
public partial class SourceUpdateDocker
1818
{

0 commit comments

Comments
 (0)