Skip to content

Files

Latest commit

419fdbb · Aug 17, 2022

History

History
40 lines (28 loc) · 1.35 KB

ActionsParticipantsRequestParticipants.md

File metadata and controls

40 lines (28 loc) · 1.35 KB

ActionsParticipantsRequestParticipants

Either a list of participant id to perform the action on, or the keyword "all" to perform the action on all participant.

oneOf schemas

Example

// Import classes:

import com.telnyx.sdk.model.List<UUID>;
import com.telnyx.sdk.model.String;

public class Example {
    public static void main(String[] args) {
        ActionsParticipantsRequestParticipants exampleActionsParticipantsRequestParticipants = new ActionsParticipantsRequestParticipants();

        // create a new List<UUID>
        List<UUID> exampleList<UUID > = new List<UUID>();
        // set ActionsParticipantsRequestParticipants to List<UUID>
        exampleActionsParticipantsRequestParticipants.setActualInstance(exampleList < UUID >);
        // to get back the List<UUID> set earlier
        List<UUID> testList<UUID > = (List<UUID>) exampleActionsParticipantsRequestParticipants.getActualInstance();

        // create a new String
        String exampleString = new String();
        // set ActionsParticipantsRequestParticipants to String
        exampleActionsParticipantsRequestParticipants.setActualInstance(exampleString);
        // to get back the String set earlier
        String testString = (String) exampleActionsParticipantsRequestParticipants.getActualInstance();
    }
}