-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApifyClientVersion.cs
More file actions
24 lines (22 loc) · 959 Bytes
/
Copy pathApifyClientVersion.cs
File metadata and controls
24 lines (22 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace Apify.Client;
/// <summary>
/// Public version constants for the Apify .NET client.
/// </summary>
/// <remarks>
/// <see cref="ClientVersion"/> is the semantic version of this library and
/// <see cref="ApiSpecVersion"/> is the <c>info.version</c> of the Apify OpenAPI specification this
/// client was generated and verified against.
/// </remarks>
public static class ApifyClientVersion
{
/// <summary>
/// The semantic version of this client library (see https://semver.org/). Changes to the public
/// interface other than additive ones are considered breaking changes.
/// </summary>
public const string ClientVersion = "0.1.1";
/// <summary>
/// The version of the Apify OpenAPI specification this client was generated and verified against.
/// Corresponds to the <c>info.version</c> field of the Apify OpenAPI document.
/// </summary>
public const string ApiSpecVersion = "v2-2026-07-07T132551Z";
}