/// <summary>
 /// Initializes a new instance of the <see cref="UpsertCatalogObjectRequest"/> class.
 /// </summary>
 /// <param name="idempotencyKey">idempotency_key.</param>
 /// <param name="mObject">object.</param>
 public UpsertCatalogObjectRequest(
     string idempotencyKey,
     Models.CatalogObject mObject)
 {
     this.IdempotencyKey = idempotencyKey;
     this.MObject        = mObject;
 }
 public Builder(
     string idempotencyKey,
     Models.CatalogObject mObject)
 {
     this.idempotencyKey = idempotencyKey;
     this.mObject        = mObject;
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CreateCatalogImageResponse"/> class.
 /// </summary>
 /// <param name="errors">errors.</param>
 /// <param name="image">image.</param>
 public CreateCatalogImageResponse(
     IList <Models.Error> errors = null,
     Models.CatalogObject image  = null)
 {
     this.Errors = errors;
     this.Image  = image;
 }
Beispiel #4
0
 public CreateCatalogImageRequest(string idempotencyKey,
                                  string objectId            = null,
                                  Models.CatalogObject image = null)
 {
     IdempotencyKey = idempotencyKey;
     ObjectId       = objectId;
     Image          = image;
 }
 public UpsertCatalogObjectResponse(IList <Models.Error> errors                = null,
                                    Models.CatalogObject catalogObject         = null,
                                    IList <Models.CatalogIdMapping> idMappings = null)
 {
     Errors        = errors;
     CatalogObject = catalogObject;
     IdMappings    = idMappings;
 }
 public RetrieveCatalogObjectResponse(IList <Models.Error> errors  = null,
                                      Models.CatalogObject mObject = null,
                                      IList <Models.CatalogObject> relatedObjects = null)
 {
     Errors         = errors;
     MObject        = mObject;
     RelatedObjects = relatedObjects;
 }
 /// <summary>
 /// Image.
 /// </summary>
 /// <param name="image"> image. </param>
 /// <returns> Builder. </returns>
 public Builder Image(Models.CatalogObject image)
 {
     this.image = image;
     return(this);
 }
 public Builder MObject(Models.CatalogObject mObject)
 {
     this.mObject = mObject;
     return(this);
 }
 public Builder Image(Models.CatalogObject value)
 {
     image = value;
     return(this);
 }
 public Builder CatalogObject(Models.CatalogObject catalogObject)
 {
     this.catalogObject = catalogObject;
     return(this);
 }
Beispiel #11
0
 public Builder MObject(Models.CatalogObject value)
 {
     mObject = value;
     return(this);
 }