Rock.CheckIn.CheckInState.CheckInState C# (CSharp) Method

CheckInState() public method

Initializes a new instance of the CheckInState class.
public CheckInState ( int deviceId, int checkinTypeId, List configuredGroupTypes ) : System.Collections.Generic
deviceId int The device id.
checkinTypeId int The checkin type identifier.
configuredGroupTypes List The configured group types.
return System.Collections.Generic
        public CheckInState( int deviceId, int? checkinTypeId, List<int> configuredGroupTypes )
        {
            DeviceId = deviceId;
            CheckinTypeId = checkinTypeId;
            ConfiguredGroupTypes = configuredGroupTypes;
            CheckIn = new CheckInStatus();
        }