QuickBooks Integrator 2020 iOS Edition

Questions / Feedback?

vacationTimeAccrualPeriod (property)

Indicates how an employee accrues time off.

Syntax

@property (nonatomic,readwrite,assign,getter=vacationTimeAccrualPeriod,setter=setVacationTimeAccrualPeriod:) int vacationTimeAccrualPeriod;
- (int)vacationTimeAccrualPeriod;
- (void)setVacationTimeAccrualPeriod:(int)newVacationTimeAccrualPeriod;

/* Possible Values */
ST_NONE(0),
ST_BEGINNING_OF_YEAR(1),
ST_EVERY_HOUR_ON_PAYCHECK(2),
ST_EVERY_PAYCHECK(3)
public var vacationTimeAccrualPeriod: EmployeeVacationTimeAccrualPeriods {
  get {...}
set {...} }
public enum EmployeeVacationTimeAccrualPeriods : Int32 { case stNone = 0 case stBeginningOfYear = 1 case stEveryHourOnPaycheck = 2 case stEveryPaycheck = 3 }

Default Value

0

Remarks

Indicates how an employee accrues time off. If sending time off hours data in an Update request, VacationTimeAccrualPeriod is a required property, and cannot be set to stNone. The default value is whatever the QuickBooks user has set in the QuickBooks Employee Preferences.

Valid values:

stNone (0) No value set.
stBeginningOfYear (1) Time off is added at the beginning of each year.
stEveryHourOnPaycheck (2) Time off is calculated by the employee's working hours.
stEveryPaycheck (3) Time off is accumulated for every paycheck.

Copyright (c) 2021 /n software inc. - All rights reserved.
QuickBooks Integrator 2020 iOS Edition - Version 20.0 [Build 7941]