Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added fulfillment inbound 20.03.2024 #747

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
/*
* The Selling Partner API for FBA inbound operations.
*
* The Selling Partner API for Fulfillment By Amazon (FBA) Inbound. The FBA Inbound API enables building inbound workflows to create, manage, and send shipments into Amazon's fulfillment network. The API has interoperability with the Send-to-Amazon user interface.
*
* OpenAPI spec version: 2024-03-20
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Runtime.Serialization;
using System.Text;
using System.Text.RegularExpressions;

namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInboundv20240320
{
/// <summary>
/// The fulfillment center appointment slot for the transportation option.
/// </summary>
[DataContract]
public partial class AppointmentSlot : IEquatable<AppointmentSlot>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="AppointmentSlot" /> class.
/// </summary>
[JsonConstructorAttribute]
protected AppointmentSlot() { }
/// <summary>
/// Initializes a new instance of the <see cref="AppointmentSlot" /> class.
/// </summary>
/// <param name="slotId">An identifier to a self-ship appointment slot. (required).</param>
/// <param name="slotTime">slotTime (required).</param>
public AppointmentSlot(string slotId = default(string), AppointmentSlotTime slotTime = default(AppointmentSlotTime))
{
// to ensure "slotId" is required (not null)
if (slotId == null)
{
throw new InvalidDataException("slotId is a required property for AppointmentSlot and cannot be null");
}
else
{
this.SlotId = slotId;
}
// to ensure "slotTime" is required (not null)
if (slotTime == null)
{
throw new InvalidDataException("slotTime is a required property for AppointmentSlot and cannot be null");
}
else
{
this.SlotTime = slotTime;
}
}

/// <summary>
/// An identifier to a self-ship appointment slot.
/// </summary>
/// <value>An identifier to a self-ship appointment slot.</value>
[DataMember(Name="slotId", EmitDefaultValue=false)]
public string SlotId { get; set; }

/// <summary>
/// Gets or Sets SlotTime
/// </summary>
[DataMember(Name="slotTime", EmitDefaultValue=false)]
public AppointmentSlotTime SlotTime { get; set; }

/// <summary>
/// Returns the string presentation of the object
/// </summary>
/// <returns>String presentation of the object</returns>
public override string ToString()
{
var sb = new StringBuilder();
sb.Append("class AppointmentSlot {\n");
sb.Append(" SlotId: ").Append(SlotId).Append("\n");
sb.Append(" SlotTime: ").Append(SlotTime).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 JsonConvert.SerializeObject(this, Formatting.Indented);
}

/// <summary>
/// Returns true if objects are equal
/// </summary>
/// <param name="input">Object to be compared</param>
/// <returns>Boolean</returns>
public override bool Equals(object input)
{
return this.Equals(input as AppointmentSlot);
}

/// <summary>
/// Returns true if AppointmentSlot instances are equal
/// </summary>
/// <param name="input">Instance of AppointmentSlot to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(AppointmentSlot input)
{
if (input == null)
return false;

return
(
this.SlotId == input.SlotId ||
(this.SlotId != null &&
this.SlotId.Equals(input.SlotId))
) &&
(
this.SlotTime == input.SlotTime ||
(this.SlotTime != null &&
this.SlotTime.Equals(input.SlotTime))
);
}

/// <summary>
/// Gets the hash code
/// </summary>
/// <returns>Hash code</returns>
public override int GetHashCode()
{
unchecked // Overflow is fine, just wrap
{
int hashCode = 41;
if (this.SlotId != null)
hashCode = hashCode * 59 + this.SlotId.GetHashCode();
if (this.SlotTime != null)
hashCode = hashCode * 59 + this.SlotTime.GetHashCode();
return hashCode;
}
}

/// <summary>
/// To validate all properties of the instance
/// </summary>
/// <param name="validationContext">Validation context</param>
/// <returns>Validation Result</returns>
IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
{
// SlotId (string) maxLength
if(this.SlotId != null && this.SlotId.Length > 38)
{
yield return new System.ComponentModel.DataAnnotations.ValidationResult("Invalid value for SlotId, length must be less than 38.", new [] { "SlotId" });
}

// SlotId (string) minLength
if(this.SlotId != null && this.SlotId.Length < 38)
{
yield return new System.ComponentModel.DataAnnotations.ValidationResult("Invalid value for SlotId, length must be greater than 38.", new [] { "SlotId" });
}

// SlotId (string) pattern
Regex regexSlotId = new Regex(@"^[a-zA-Z0-9-]*$", RegexOptions.CultureInvariant);
if (false == regexSlotId.Match(this.SlotId).Success)
{
yield return new System.ComponentModel.DataAnnotations.ValidationResult("Invalid value for SlotId, must match a pattern of " + regexSlotId, new [] { "SlotId" });
}

yield break;
}
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
/*
* The Selling Partner API for FBA inbound operations.
*
* The Selling Partner API for Fulfillment By Amazon (FBA) Inbound. The FBA Inbound API enables building inbound workflows to create, manage, and send shipments into Amazon's fulfillment network. The API has interoperability with the Send-to-Amazon user interface.
*
* OpenAPI spec version: 2024-03-20
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Runtime.Serialization;
using System.Text;

namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInboundv20240320
{
/// <summary>
/// An appointment slot time with a start and end.
/// </summary>
[DataContract]
public partial class AppointmentSlotTime : IEquatable<AppointmentSlotTime>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="AppointmentSlotTime" /> class.
/// </summary>
[JsonConstructorAttribute]
protected AppointmentSlotTime() { }
/// <summary>
/// Initializes a new instance of the <see cref="AppointmentSlotTime" /> class.
/// </summary>
/// <param name="endTime">The end timestamp of the appointment in UTC. (required).</param>
/// <param name="startTime">The start timestamp of the appointment in UTC. (required).</param>
public AppointmentSlotTime(DateTime? endTime = default(DateTime?), DateTime? startTime = default(DateTime?))
{
// to ensure "endTime" is required (not null)
if (endTime == null)
{
throw new InvalidDataException("endTime is a required property for AppointmentSlotTime and cannot be null");
}
else
{
this.EndTime = endTime;
}
// to ensure "startTime" is required (not null)
if (startTime == null)
{
throw new InvalidDataException("startTime is a required property for AppointmentSlotTime and cannot be null");
}
else
{
this.StartTime = startTime;
}
}

/// <summary>
/// The end timestamp of the appointment in UTC.
/// </summary>
/// <value>The end timestamp of the appointment in UTC.</value>
[DataMember(Name="endTime", EmitDefaultValue=false)]
public DateTime? EndTime { get; set; }

/// <summary>
/// The start timestamp of the appointment in UTC.
/// </summary>
/// <value>The start timestamp of the appointment in UTC.</value>
[DataMember(Name="startTime", EmitDefaultValue=false)]
public DateTime? StartTime { get; set; }

/// <summary>
/// Returns the string presentation of the object
/// </summary>
/// <returns>String presentation of the object</returns>
public override string ToString()
{
var sb = new StringBuilder();
sb.Append("class AppointmentSlotTime {\n");
sb.Append(" EndTime: ").Append(EndTime).Append("\n");
sb.Append(" StartTime: ").Append(StartTime).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 JsonConvert.SerializeObject(this, Formatting.Indented);
}

/// <summary>
/// Returns true if objects are equal
/// </summary>
/// <param name="input">Object to be compared</param>
/// <returns>Boolean</returns>
public override bool Equals(object input)
{
return this.Equals(input as AppointmentSlotTime);
}

/// <summary>
/// Returns true if AppointmentSlotTime instances are equal
/// </summary>
/// <param name="input">Instance of AppointmentSlotTime to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(AppointmentSlotTime input)
{
if (input == null)
return false;

return
(
this.EndTime == input.EndTime ||
(this.EndTime != null &&
this.EndTime.Equals(input.EndTime))
) &&
(
this.StartTime == input.StartTime ||
(this.StartTime != null &&
this.StartTime.Equals(input.StartTime))
);
}

/// <summary>
/// Gets the hash code
/// </summary>
/// <returns>Hash code</returns>
public override int GetHashCode()
{
unchecked // Overflow is fine, just wrap
{
int hashCode = 41;
if (this.EndTime != null)
hashCode = hashCode * 59 + this.EndTime.GetHashCode();
if (this.StartTime != null)
hashCode = hashCode * 59 + this.StartTime.GetHashCode();
return hashCode;
}
}

/// <summary>
/// To validate all properties of the instance
/// </summary>
/// <param name="validationContext">Validation context</param>
/// <returns>Validation Result</returns>
IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
{
yield break;
}
}

}
Loading
Loading