mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2026-02-04 10:46:34 +00:00
160 lines
5.5 KiB
C#
160 lines
5.5 KiB
C#
/*
|
|
* Tribufu API
|
|
*
|
|
* API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.2.6
|
|
* Contact: contact@tribufu.com
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*/
|
|
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using OpenAPIDateConverter = Tribufu.Client.OpenAPIDateConverter;
|
|
|
|
namespace Tribufu.Model
|
|
{
|
|
/// <summary>
|
|
/// PackageRelease
|
|
/// </summary>
|
|
[DataContract(Name = "PackageRelease")]
|
|
public partial class PackageRelease : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PackageRelease" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected PackageRelease() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PackageRelease" /> class.
|
|
/// </summary>
|
|
/// <param name="id">id.</param>
|
|
/// <param name="varVersion">varVersion (required).</param>
|
|
/// <param name="packageId">packageId.</param>
|
|
/// <param name="notes">notes.</param>
|
|
/// <param name="created">created.</param>
|
|
/// <param name="updated">updated.</param>
|
|
public PackageRelease(string id = default(string), string varVersion = default(string), string packageId = default(string), string notes = default(string), DateTime created = default(DateTime), DateTime? updated = default(DateTime?))
|
|
{
|
|
// to ensure "varVersion" is required (not null)
|
|
if (varVersion == null)
|
|
{
|
|
throw new ArgumentNullException("varVersion is a required property for PackageRelease and cannot be null");
|
|
}
|
|
this.VarVersion = varVersion;
|
|
this.Id = id;
|
|
this.PackageId = packageId;
|
|
this.Notes = notes;
|
|
this.Created = created;
|
|
this.Updated = updated;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Id
|
|
/// </summary>
|
|
[DataMember(Name = "id", EmitDefaultValue = false)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets VarVersion
|
|
/// </summary>
|
|
[DataMember(Name = "version", IsRequired = true, EmitDefaultValue = true)]
|
|
public string VarVersion { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets PackageId
|
|
/// </summary>
|
|
[DataMember(Name = "package_id", EmitDefaultValue = false)]
|
|
public string PackageId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Notes
|
|
/// </summary>
|
|
[DataMember(Name = "notes", EmitDefaultValue = true)]
|
|
public string Notes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Files
|
|
/// </summary>
|
|
[DataMember(Name = "files", EmitDefaultValue = true)]
|
|
public List<File> Files { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Returns false as Files should not be serialized given that it's read-only.
|
|
/// </summary>
|
|
/// <returns>false (boolean)</returns>
|
|
public bool ShouldSerializeFiles()
|
|
{
|
|
return false;
|
|
}
|
|
/// <summary>
|
|
/// Gets or Sets Created
|
|
/// </summary>
|
|
[DataMember(Name = "created", EmitDefaultValue = false)]
|
|
public DateTime Created { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Updated
|
|
/// </summary>
|
|
[DataMember(Name = "updated", EmitDefaultValue = true)]
|
|
public DateTime? Updated { get; set; }
|
|
|
|
/// <summary>
|
|
/// Returns the string presentation of the object
|
|
/// </summary>
|
|
/// <returns>String presentation of the object</returns>
|
|
public override string ToString()
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.Append("class PackageRelease {\n");
|
|
sb.Append(" Id: ").Append(Id).Append("\n");
|
|
sb.Append(" VarVersion: ").Append(VarVersion).Append("\n");
|
|
sb.Append(" PackageId: ").Append(PackageId).Append("\n");
|
|
sb.Append(" Notes: ").Append(Notes).Append("\n");
|
|
sb.Append(" Files: ").Append(Files).Append("\n");
|
|
sb.Append(" Created: ").Append(Created).Append("\n");
|
|
sb.Append(" Updated: ").Append(Updated).Append("\n");
|
|
sb.Append("}\n");
|
|
return sb.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the JSON string presentation of the object
|
|
/// </summary>
|
|
/// <returns>JSON string presentation of the object</returns>
|
|
public virtual string ToJson()
|
|
{
|
|
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
|
}
|
|
|
|
/// <summary>
|
|
/// To validate all properties of the instance
|
|
/// </summary>
|
|
/// <param name="validationContext">Validation context</param>
|
|
/// <returns>Validation Result</returns>
|
|
IEnumerable<ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
|
|
{
|
|
// VarVersion (string) maxLength
|
|
if (this.VarVersion != null && this.VarVersion.Length > 45)
|
|
{
|
|
yield return new ValidationResult("Invalid value for VarVersion, length must be less than 45.", new [] { "VarVersion" });
|
|
}
|
|
|
|
yield break;
|
|
}
|
|
}
|
|
|
|
}
|