src/main/java/com/microsoft/store/partnercenter/models/invoices/DailyRatedUsageLineItem.java [885:957]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getProductId()
    {
        return productId;
    }

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

    /**
     * Gets the name of the product associated with the invoice line item.
     * 
     * @return The name of the product associated with the invoice line item.
     */
    public String getProductName()
    {
        return productName;
    }

    /** 
     * Sets the name of the product associated with the invoice line item.
     * 
     * @param value The name of the product associated with the invoice line item.
    */
    public void setProductName(String value)
    {
        productName = value;
    }  

    /**
     * Gets publisher identifier associated with the invoice line item type.
     * 
     * @return The publisher identifier associated with the invoice line item type.
     */
    public String getPublisherId()
    {
        return publisherId;
    }

    /** 
     * Sets the publisher identifier associated with the invoice line item type..
     * 
     * @param value The publisher identifier associated with the invoice line item type.
    */
    public void setPublisherId(String value)
    {
        publisherId = value;
    } 

    /**
     * Gets the name of the publisher associated with the invoice line item type.
     * 
     * @return The name of the publisher associated with the invoice line item type.
     */
    public String getPublisherName()
    {
        return publisherName;
    }

    /** 
     * Sets the name of the publisher associated with the invoice line item type.
     * 
     * @param value The name of the publisher associated with the invoice line item type.
    */
    public void setPublisherName(String value)
    {
        publisherName = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/models/invoices/OneTimeInvoiceLineItem.java [703:775]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getProductId()
    {
        return productId;
    }

    /**
     * Gets the product unique identifier.
     *  
     * @param value The product unique identifier.
     */
    public void setProductId(String value)
    {
        productId = value;
    }

    /**
     * Gets the name for the product.
     * 
     * @return The name for the product.
     */
    public String getProductName()
    {
        return productName;
    }

    /**
     * Sets the name for the product.
     * 
     * @param value The name for the product.
     */
    public void setProductName(String value)
    {
        productName = value;
    }

    /**
     * Gets the publisher identifier associated with this purchase.
     * 
     * @return The publisher identifier associated with this purchase.
     */
    public String getPublisherId()
    {
        return publisherId;
    }

    /**
     * Sets the publisher identifier associated with this purchase.
     * 
     * @param value The publisher identifier associated with this purchase.
     */
    public void setPublisherId(String value)    
    {
        publisherId = value;
    }

    /**
     * Gets the publisher name associated with this purchase.
     * 
     * @return The publisher name associated with this purchase.
     */
    public String getPublisherName()
    {
        return publisherName;
    }

    /**
     * Sets the publisher name associated with this purchase.
     * 
     * @param value The publisher name associated with this purchase.
     */
    public void setPublisherName(String value)    
    {
        publisherName = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



