Skip to content

Commit 17af0be

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@5309269f.
1 parent e5d8d16 commit 17af0be

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
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", "{15ED036A-D038-4A5B-B8E2-D2364899F5FE}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Segment.PublicApi", "src\Segment.PublicApi\Segment.PublicApi.csproj", "{6AD3CE0E-5F03-434F-9E0D-2C7331567123}"
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-
{15ED036A-D038-4A5B-B8E2-D2364899F5FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{15ED036A-D038-4A5B-B8E2-D2364899F5FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{15ED036A-D038-4A5B-B8E2-D2364899F5FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{15ED036A-D038-4A5B-B8E2-D2364899F5FE}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{6AD3CE0E-5F03-434F-9E0D-2C7331567123}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{6AD3CE0E-5F03-434F-9E0D-2C7331567123}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{6AD3CE0E-5F03-434F-9E0D-2C7331567123}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{6AD3CE0E-5F03-434F-9E0D-2C7331567123}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

src/Segment.PublicApi/Model/AudienceDefinition.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected AudienceDefinition() { }
4040
/// <summary>
4141
/// Initializes a new instance of the <see cref="AudienceDefinition" /> class.
4242
/// </summary>
43-
/// <param name="targetEntity">The target entity slug, required in creating a linked audience..</param>
43+
/// <param name="targetEntity">The target entity relationship slug, required in a linked audience, default to profile if not specified..</param>
4444
/// <param name="query">The query language string defining the audience segmentation criteria. For guidance on using the query language, see the [Segment documentation site](https://segment.com/docs/api/public-api/query-language). (required).</param>
4545
public AudienceDefinition(string targetEntity = default(string), string query = default(string))
4646
{
@@ -54,9 +54,9 @@ protected AudienceDefinition() { }
5454
}
5555

5656
/// <summary>
57-
/// The target entity slug, required in creating a linked audience.
57+
/// The target entity relationship slug, required in a linked audience, default to profile if not specified.
5858
/// </summary>
59-
/// <value>The target entity slug, required in creating a linked audience.</value>
59+
/// <value>The target entity relationship slug, required in a linked audience, default to profile if not specified.</value>
6060
[DataMember(Name = "targetEntity", EmitDefaultValue = false)]
6161
public string TargetEntity { get; set; }
6262

src/Segment.PublicApi/Model/AudienceOptions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public partial class AudienceOptions : IEquatable<AudienceOptions>, IValidatable
3737
/// </summary>
3838
/// <param name="includeHistoricalData">Determines whether data prior to the audience being created is included when determining audience membership. Note that including historical data may be needed in order to properly handle the definition specified. In these cases, Segment will automatically handle including historical data and the response will return the includeHistoricalData parameter as true..</param>
3939
/// <param name="filterByExternalIds">The set of profile external identifiers being used to determine audience membership. Profiles will only be considered for audience membership if the profile has at least one external id whose key matches a value in this set. If unspecified, a default set of external identifiers will be used: [&#39;user_id&#39;, &#39;email&#39;, &#39;android.idfa&#39;, &#39;ios.idfa&#39;]..</param>
40-
/// <param name="backfillEventDataDays">If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership..</param>
40+
/// <param name="backfillEventDataDays">If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership..</param>
4141
public AudienceOptions(bool includeHistoricalData = default(bool), List<string> filterByExternalIds = default(List<string>), decimal backfillEventDataDays = default(decimal))
4242
{
4343
this.IncludeHistoricalData = includeHistoricalData;
@@ -60,9 +60,9 @@ public partial class AudienceOptions : IEquatable<AudienceOptions>, IValidatable
6060
public List<string> FilterByExternalIds { get; set; }
6161

6262
/// <summary>
63-
/// If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
63+
/// If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
6464
/// </summary>
65-
/// <value>If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.</value>
65+
/// <value>If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.</value>
6666
[DataMember(Name = "backfillEventDataDays", EmitDefaultValue = false)]
6767
public decimal BackfillEventDataDays { get; set; }
6868

src/Segment.PublicApi/Model/AudienceOptionsWithLookback.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected AudienceOptionsWithLookback() { }
4242
/// </summary>
4343
/// <param name="filterByExternalIds">The set of profile external identifiers being used to determine audience membership. Profiles will only be considered for audience membership if the profile has at least one external id whose key matches a value in this set. (required).</param>
4444
/// <param name="includeHistoricalData">Determines whether data prior to the audience being created is included when determining audience membership. Note that including historical data may be needed in order to properly handle the definition specified. In these cases, Segment will automatically handle including historical data and the response will return the includeHistoricalData parameter as true..</param>
45-
/// <param name="backfillEventDataDays">If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership..</param>
45+
/// <param name="backfillEventDataDays">If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership..</param>
4646
public AudienceOptionsWithLookback(List<string> filterByExternalIds = default(List<string>), bool includeHistoricalData = default(bool), decimal backfillEventDataDays = default(decimal))
4747
{
4848
// to ensure "filterByExternalIds" is required (not null)
@@ -70,9 +70,9 @@ protected AudienceOptionsWithLookback() { }
7070
public bool IncludeHistoricalData { get; set; }
7171

7272
/// <summary>
73-
/// If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
73+
/// If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
7474
/// </summary>
75-
/// <value>If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.</value>
75+
/// <value>If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely included or entirely excluded when determining audience membership.</value>
7676
[DataMember(Name = "backfillEventDataDays", EmitDefaultValue = false)]
7777
public decimal BackfillEventDataDays { get; set; }
7878

0 commit comments

Comments
 (0)