Skip to content

Commit 6541de8

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@b48cd468.
1 parent 921b64b commit 6541de8

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", "{251A2A8E-ED10-482D-A1D4-5B324FD1F293}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Segment.PublicApi", "src\Segment.PublicApi\Segment.PublicApi.csproj", "{DB75F858-0FD5-4620-B09B-458DC0053E9F}"
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-
{251A2A8E-ED10-482D-A1D4-5B324FD1F293}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{251A2A8E-ED10-482D-A1D4-5B324FD1F293}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{251A2A8E-ED10-482D-A1D4-5B324FD1F293}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{251A2A8E-ED10-482D-A1D4-5B324FD1F293}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{DB75F858-0FD5-4620-B09B-458DC0053E9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{DB75F858-0FD5-4620-B09B-458DC0053E9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{DB75F858-0FD5-4620-B09B-458DC0053E9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{DB75F858-0FD5-4620-B09B-458DC0053E9F}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

src/Segment.PublicApi/Model/AudienceOptions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public partial class AudienceOptions : IEquatable<AudienceOptions>, IValidatable
3636
/// Initializes a new instance of the <see cref="AudienceOptions" /> class.
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>
39-
/// <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..</param>
39+
/// <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>
4040
/// <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>
4141
public AudienceOptions(bool includeHistoricalData = default(bool), List<string> filterByExternalIds = default(List<string>), decimal backfillEventDataDays = default(decimal))
4242
{
@@ -53,9 +53,9 @@ public partial class AudienceOptions : IEquatable<AudienceOptions>, IValidatable
5353
public bool IncludeHistoricalData { get; set; }
5454

5555
/// <summary>
56-
/// 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.
56+
/// 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;].
5757
/// </summary>
58-
/// <value>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.</value>
58+
/// <value>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;].</value>
5959
[DataMember(Name = "filterByExternalIds", EmitDefaultValue = false)]
6060
public List<string> FilterByExternalIds { get; set; }
6161

0 commit comments

Comments
 (0)