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/servicecosts/ServiceCostLineItem.java [132:204]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getProductId()
    {
        return productId;
    }

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

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

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

    /**
     * Gets the identifier of the publisher.
     * 
     * @return The identifier of the publisher.
     */
    public String getPublisherId()
    {
        return publisherId; 
    }

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

    /**
     * Gets the name of the publisher.
     * 
     * @return The name of the publisher.
     */
    public String getPublisherName()
    {
        return publisherName;
    }

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



