Class IntegrationSemVer
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Semver denotes the major.minor version of an integration release
[Serializable]
public record IntegrationSemVer : IJsonOnDeserialized, IEquatable<IntegrationSemVer>
- Inheritance
-
IntegrationSemVer
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Major
Major is the major number of a semver
[JsonPropertyName("major")]
public int? Major { get; set; }
Property Value
- int?
Minor
Minior is the minior number of a semver
[JsonPropertyName("minor")]
public int? Minor { get; set; }
Property Value
- int?
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.