src/main/java/com/microsoft/store/partnercenter/models/invoices/DailyRatedUsageLineItem.java [1145:1217]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getSkuId()
    {
        return skuId;
    }

    /** 
     * Sets the SKU identifier associated with the invoice line item.
     * 
     * @param value The SKU identifier associated with the invoice line item.
    */
    public void setSkuId(String value)
    {
        skuId = value;
    }

    /**
     * Gets the SKU name associated with the invoice line item.
     * 
     * @return The SKU name associated with the invoice line item.
     */
    public String getSkuName()
    {
        return skuName;
    }

    /** 
     * Set the SKU name associated with the invoice line item.
     * 
     * @param value The SKU name associated with the invoice line item.
    */
    public void setSkuName(String value)
    {
        skuName = value;
    }

    /**
     * Gets the description of the subscription associated with the invoice line item.
     * 
     * @return The description of the subscription associated with the invoice line item.
     */
    public String getSubscriptionDescription()
    {
        return subscriptionDescription;
    }

    /** 
     * Sets the description of the subscription associated with the invoice line item.
     * 
     * @param value The description of the subscription associated with the invoice line item.
    */
    public void setSubscriptionDescription(String value)
    {
        subscriptionDescription = value;
    }

    /**
     * Gets the subscription identifier associated with the invoice line item.
     * 
     * @return The subscription identifier associated with the invoice line item.
     */
    public String getSubscriptionId()
    {
        return subscriptionId;
    }

    /** 
     * Sets the subscription identifier associated with the invoice line item.
     * 
     * @param value The subscription identifier associated with the invoice line item.
    */
    public void setSubscriptionId(String value)
    {
        subscriptionId = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/models/invoices/OneTimeInvoiceLineItem.java [843:915]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getSkuId()
    {
        return skuId;
    }

    /**
     * Sets the SKU unique identifier.
     * 
     * @param value The SKU unique identifier.
     */
    public void setSkuId(String value)
    {
        skuId = value;
    }

    /**
     * Gets the name for the SKU.
     * 
     * @return The name for the SKU.
     */
    public String getSkuName()
    {
        return skuName;
    }

    /**
     * Sets the name for the SKU.
     * 
     * @param value The name for the SKU.
     */
    public void setSkuName(String value)
    {
        skuName = value;
    }

    /**
     * Gets the subscription description associated with this purchase.
     * 
     * @return The subscription description associated with this purchase.
     */
    public String getSubscriptionDescription()
    {
        return subscriptionDescription;
    }

    /**
     * Sets the subscription description associated with this purchase.
     * 
     * @param value The subscription description associated with this purchase.
     */
    public void setSubscriptionDescription(String value)    
    {
        subscriptionDescription = value;
    }

    /**
     * Gets the subscription identifier associated with this purchase.
     * 
     * @return The subscription identifier associated with this purchase.
     */
    public String getSubscriptionId()
    {
        return subscriptionId;
    }

    /**
     * Sets the subscription identifier associated with this purchase.
     * 
     * @param value The subscription identifier associated with this purchase.
     */
    public void setSubscriptionId(String value)    
    {
        subscriptionId = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



