/// <summary>
        /// List of custom attributes associated to the line item.
        /// </summary>
        public OrderLineItemQuery customAttributes(AttributeDelegate buildQuery)
        {
            Query.Append("customAttributes ");

            Query.Append("{");
            buildQuery(new AttributeQuery(Query));
            Query.Append("}");

            return(this);
        }
示例#2
0
        /// <summary>
        /// A list of extra information that is added to the checkout.
        /// </summary>
        public CheckoutQuery customAttributes(AttributeDelegate buildQuery)
        {
            Query.Append("customAttributes ");

            Query.Append("{");
            buildQuery(new AttributeQuery(Query));
            Query.Append("}");

            return(this);
        }