QuickBooks Integrator 2020 iOS Edition

Questions / Feedback?

adjustment (property)

Indicates whether this Journal Entry is an adjustment or not.

Syntax

@property (nonatomic,readwrite,assign,getter=adjustment,setter=setAdjustment:) int adjustment;
- (int)adjustment;
- (void)setAdjustment:(int)newAdjustment;

/* Possible Values */
JEA_NOT_SET(0),
JEA_IS_ADJUSTMENT(1),
JEA_IS_NOT_ADJUSTMENT(2)
public var adjustment: JournalentryAdjustments {
  get {...}
set {...} }
public enum JournalentryAdjustments : Int32 { case jeaNotSet = 0 case jeaIsAdjustment = 1 case jeaIsNotAdjustment = 2 }

Default Value

0

Remarks

When a change is an "adjustment," the original information is retained, usually so an accountant can see the effects of the adjustment. The use of this property requires QBXMLVersion to be 3.0 or greater.

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