コード例 #1
0
        private GetAddressByNameResult(
            Outputs.ContactDetailsResponse contactDetails,

            string id,

            string location,

            string name,

            Outputs.ShippingAddressResponse?shippingAddress,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            ContactDetails  = contactDetails;
            Id              = id;
            Location        = location;
            Name            = name;
            ShippingAddress = shippingAddress;
            SystemData      = systemData;
            Tags            = tags;
            Type            = type;
        }
コード例 #2
0
        private GetOrderByNameResult(
            Outputs.AddressDetailsResponse addressDetails,

            string id,

            string location,

            string name,

            string orderCollectionId,

            Outputs.OrderDetailsResponse orderDetails,

            string startTime,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            AddressDetails    = addressDetails;
            Id                = id;
            Location          = location;
            Name              = name;
            OrderCollectionId = orderCollectionId;
            OrderDetails      = orderDetails;
            StartTime         = startTime;
            SystemData        = systemData;
            Tags              = tags;
            Type              = type;
        }
コード例 #3
0
        private GetOrderCollectionByNameResult(
            string id,

            string location,

            string name,

            ImmutableArray <string> orderIds,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            Id         = id;
            Location   = location;
            Name       = name;
            OrderIds   = orderIds;
            SystemData = systemData;
            Tags       = tags;
            Type       = type;
        }