Skip to content

Commit 3a0d083

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@72093403.
1 parent 6446bbe commit 3a0d083

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Segment.PublicApi.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Segment.PublicApi", "src\Segment.PublicApi\Segment.PublicApi.csproj", "{FBCEB412-92C7-48E5-9C4C-25470A627586}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Segment.PublicApi", "src\Segment.PublicApi\Segment.PublicApi.csproj", "{99DEDDD3-5A66-49C8-BB7E-7980CA9CC012}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution
99
Debug|Any CPU = Debug|Any CPU
1010
Release|Any CPU = Release|Any CPU
1111
EndGlobalSection
1212
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{FBCEB412-92C7-48E5-9C4C-25470A627586}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{FBCEB412-92C7-48E5-9C4C-25470A627586}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{FBCEB412-92C7-48E5-9C4C-25470A627586}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{FBCEB412-92C7-48E5-9C4C-25470A627586}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{99DEDDD3-5A66-49C8-BB7E-7980CA9CC012}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{99DEDDD3-5A66-49C8-BB7E-7980CA9CC012}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{99DEDDD3-5A66-49C8-BB7E-7980CA9CC012}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{99DEDDD3-5A66-49C8-BB7E-7980CA9CC012}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

src/Segment.PublicApi/Model/ListAudienceSearchInput.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ protected ListAudienceSearchInput() { }
7474
/// Initializes a new instance of the <see cref="ListAudienceSearchInput" /> class.
7575
/// </summary>
7676
/// <param name="type">Field to filter by. (required).</param>
77-
/// <param name="query">Text to match against the selected field (max 255 characters). (required).</param>
77+
/// <param name="query">Text to match against the selected field (max 255 characters). When searching by KEY, a prefix match is used. For all other options, a full wildcard search will be used. (required).</param>
7878
public ListAudienceSearchInput(TypeEnum type = default(TypeEnum), string query = default(string))
7979
{
8080
this.Type = type;
@@ -87,9 +87,9 @@ protected ListAudienceSearchInput() { }
8787
}
8888

8989
/// <summary>
90-
/// Text to match against the selected field (max 255 characters).
90+
/// Text to match against the selected field (max 255 characters). When searching by KEY, a prefix match is used. For all other options, a full wildcard search will be used.
9191
/// </summary>
92-
/// <value>Text to match against the selected field (max 255 characters).</value>
92+
/// <value>Text to match against the selected field (max 255 characters). When searching by KEY, a prefix match is used. For all other options, a full wildcard search will be used.</value>
9393
[DataMember(Name = "query", IsRequired = true, EmitDefaultValue = true)]
9494
public string Query { get; set; }
9595

0 commit comments

Comments
 (0)