<?php
	namespace ElasticEmailEnums; 

class EmailCredits
{
    /**
     * Date in YYYY-MM-DDThh:ii:ss format
     */
    public /*DateTime*/ $Date;

    /**
     * Amount of money in transaction
     */
    public /*decimal*/ $Amount;

    /**
     * Source of URL of payment
     */
    public /*string*/ $Source;

    /**
     * Free form field of notes
     */
    public /*string*/ $Notes;

}

