All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.store.partnercenter.models.servicerequests.ServiceRequestNote Maven / Gradle / Ivy

There is a newer version: 1.15.3
Show newest version
// -----------------------------------------------------------------------
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// -----------------------------------------------------------------------

package com.microsoft.store.partnercenter.models.servicerequests;

import org.joda.time.DateTime;

/**
 * Represents a Service Request Note class
 */
public class ServiceRequestNote
{
    /**
     * Gets or sets the name of the creator of the Note.
     */
    private String __CreatedByName;

    public String getCreatedByName()
    {
        return __CreatedByName;
    }

    public void setCreatedByName( String value )
    {
        __CreatedByName = value;
    }

    /**
     * Gets or sets the create date time of the Note.
     */
    private DateTime __CreatedDate;

    public DateTime getCreatedDate()
    {
        return __CreatedDate;
    }

    public void setCreatedDate( DateTime value )
    {
        __CreatedDate = value;
    }

    /**
     * Gets or sets the text of the Note.
     */
    private String __Text;

    public String getText()
    {
        return __Text;
    }

    public void setText( String value )
    {
        __Text = value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy