Release v1.3.0

This commit is contained in:
2025-12-27 10:05:50 -03:00
parent 87334bb28c
commit 9678659892
69 changed files with 674 additions and 870 deletions

View File

@@ -3,7 +3,7 @@
*
* API to access Tribufu services.
*
* The version of the OpenAPI document: 1.2.6
* The version of the OpenAPI document: 1.3.0
* Contact: contact@tribufu.com
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
@@ -221,6 +221,12 @@ namespace Tribufu.Model
/// <returns>Validation Result</returns>
IEnumerable<ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
{
// Name (string) maxLength
if (this.Name != null && this.Name.Length > 75)
{
yield return new ValidationResult("Invalid value for Name, length must be less than 75.", new [] { "Name" });
}
yield break;
}
}