Go-to-Light Service 4.0.0.2397 - 121 - API License to Cloud Demo

<back to all web services

MissionUpdateDetail

Requires Authentication
The following routes are available for this service:
All Verbs/MissionUpdateDetail/{ID}/{QuantityPrepared}
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using GoToLightAPI;

namespace GoToLightAPI
{
    public partial class MissionUpdateDetail
    {
        ///<summary>
        ///Label ID
        ///</summary>
        [ApiMember(Description="Label ID", IsRequired=true)]
        public virtual int ID { get; set; }

        ///<summary>
        ///Quantity the operator prepared
        ///</summary>
        [ApiMember(Description="Quantity the operator prepared", IsRequired=true)]
        public virtual double QuantityPrepared { get; set; }

        ///<summary>
        ///Related batch value
        ///</summary>
        [ApiMember(Description="Related batch value")]
        public virtual string Batch { get; set; }

        ///<summary>
        ///Related target container code
        ///</summary>
        [ApiMember(Description="Related target container code")]
        public virtual string ContainerCode { get; set; }

        ///<summary>
        ///Data1 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data1 will be modified with the given value")]
        public virtual string Data1 { get; set; }

        ///<summary>
        ///Data2 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data2 will be modified with the given value")]
        public virtual string Data2 { get; set; }

        ///<summary>
        ///Data3 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data3 will be modified with the given value")]
        public virtual string Data3 { get; set; }

        ///<summary>
        ///Data4 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data4 will be modified with the given value")]
        public virtual string Data4 { get; set; }

        ///<summary>
        ///Data5 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data5 will be modified with the given value")]
        public virtual string Data5 { get; set; }

        ///<summary>
        ///Data6 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data6 will be modified with the given value")]
        public virtual string Data6 { get; set; }

        ///<summary>
        ///Data7 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data7 will be modified with the given value")]
        public virtual string Data7 { get; set; }

        ///<summary>
        ///Data8 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data8 will be modified with the given value")]
        public virtual string Data8 { get; set; }

        ///<summary>
        ///Data9 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data9 will be modified with the given value")]
        public virtual string Data9 { get; set; }

        ///<summary>
        ///Data10 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data10 will be modified with the given value")]
        public virtual string Data10 { get; set; }

        ///<summary>
        ///Data11 will be modified with the given value
        ///</summary>
        [ApiMember(Description="Data11 will be modified with the given value")]
        public virtual string Data11 { get; set; }

        ///<summary>
        ///Stockroom name
        ///</summary>
        [ApiMember(Description="Stockroom name")]
        public virtual string StockroomName { get; set; }

        ///<summary>
        ///Product's version selected
        ///</summary>
        [ApiMember(Description="Product's version selected")]
        public virtual string VersionSelected { get; set; }

        ///<summary>
        ///Owner
        ///</summary>
        [ApiMember(Description="Owner")]
        public virtual string Owner { get; set; }

        ///<summary>
        ///Allow destock qty in db
        ///</summary>
        [ApiMember(Description="Allow destock qty in db")]
        public virtual bool UpdateStockQty { get; set; }
    }

}

C# MissionUpdateDetail DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /MissionUpdateDetail/{ID}/{QuantityPrepared} HTTP/1.1 
Host: clouddemo.pickeos.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	ID: 0,
	QuantityPrepared: 0,
	Batch: String,
	ContainerCode: String,
	Data1: String,
	Data2: String,
	Data3: String,
	Data4: String,
	Data5: String,
	Data6: String,
	Data7: String,
	Data8: String,
	Data9: String,
	Data10: String,
	Data11: String,
	StockroomName: String,
	VersionSelected: String,
	Owner: String,
	UpdateStockQty: False
}