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

com.softlayer.api.service.ticket.chat.TranscriptLine Maven / Gradle / Ivy

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

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.user.Interface;

/**
 * @see SoftLayer_Ticket_Chat_TranscriptLine
 */
@ApiType("SoftLayer_Ticket_Chat_TranscriptLine")
public class TranscriptLine extends Entity {

    @ApiProperty
    protected Interface speaker;

    public Interface getSpeaker() {
        return speaker;
    }

    public void setSpeaker(Interface speaker) {
        this.speaker = speaker;
    }

    public static class Mask extends com.softlayer.api.service.Entity.Mask {

        public com.softlayer.api.service.user.Interface.Mask speaker() {
            return withSubMask("speaker", com.softlayer.api.service.user.Interface.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy