HcCreateContactEncounterActionInput

Print
Apex classe Details
Name HcCreateContactEncounterActionInput
Label HealthCloudGA.HcCreateContactEncounterActionInput
Namespace Prefix HealthCloudGA
Status Active
Api Version 60
Apex Code
/*
This file is generated and isn't the actual source code for this
managed global class.
This read-only file shows the class's global constructors,
methods, variables, and properties.
To enable code to compile, all methods return null.
*/
global class HcCreateContactEncounterActionInput {
    @InvocableVariable(label='Encounter Duration' description='Encounter Duration' required=false)
    global Integer encounterDuration;
    @InvocableVariable(label='Estimated Participant Count' description='Estimated Participant Count' required=false)
    global Integer estimatedParticipantCount;
    @InvocableVariable(label='Location Id' description='Location Id' required=false)
    global String locationId;
    @InvocableVariable(label='Name' description='Name' required=false)
    global String name;
    @InvocableVariable(label='Start Date Time' description='Start Date Time' required=false)
    global Datetime startDateTime;
    @Deprecated
    @InvocableVariable(label='Start Time' description='Start Time' required=false)
    global Date startTime;
    global HcCreateContactEncounterActionInput() {

    }
}