コード例 #1
0
ファイル: StockMovement.cs プロジェクト: ddeniz/ParasutClient
 /// <summary>
 /// Initializes a new instance of the <see cref="StockMovement" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="type">Type of the resource.</param>
 /// <param name="attributes">attributes (required).</param>
 /// <param name="relationships">relationships.</param>
 public StockMovement(string id = default(string), TypeEnum?type = default(TypeEnum?), StockMovementAttributes attributes = default(StockMovementAttributes), StockMovementRelationships relationships = default(StockMovementRelationships))
 {
     // to ensure "attributes" is required (not null)
     if (attributes == null)
     {
         throw new InvalidDataException("attributes is a required property for StockMovement and cannot be null");
     }
     else
     {
         this.Attributes = attributes;
     }
     this.Id            = id;
     this.Type          = type;
     this.Relationships = relationships;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CompanyIdshipmentDocumentsDataRelationshipsStockMovementsData" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="type">Type of the resource.</param>
 /// <param name="attributes">attributes.</param>
 /// <param name="relationships">relationships.</param>
 public CompanyIdshipmentDocumentsDataRelationshipsStockMovementsData(string id = default(string), TypeEnum?type = default(TypeEnum?), StockMovementAttributes attributes = default(StockMovementAttributes), CompanyIdpurchaseBillsdetailedDataRelationshipsDetailsRelationships relationships = default(CompanyIdpurchaseBillsdetailedDataRelationshipsDetailsRelationships))
 {
     this.Id            = id;
     this.Type          = type;
     this.Attributes    = attributes;
     this.Relationships = relationships;
 }