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

com.softlayer.api.service.ticket.update.Chat Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.ticket.update;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.ticket.Update;
import com.softlayer.api.service.ticket.chat.Liveperson;

/**
 * A SoftLayer_Ticket_Update_Chat is a chat between a customer and a customer service representative relating to a ticket. 
 *
 * @see SoftLayer_Ticket_Update_Chat
 */
@ApiType("SoftLayer_Ticket_Update_Chat")
public class Chat extends Update {

    /**
     * The chat between the Customer and Agent
     */
    @ApiProperty
    protected Liveperson chat;

    public Liveperson getChat() {
        return chat;
    }

    public void setChat(Liveperson chat) {
        this.chat = chat;
    }

    public static class Mask extends com.softlayer.api.service.ticket.Update.Mask {

        public com.softlayer.api.service.ticket.chat.Liveperson.Mask chat() {
            return withSubMask("chat", com.softlayer.api.service.ticket.chat.Liveperson.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy