File size: 311 Bytes
16cdcb7 | 1 2 3 4 5 6 7 8 9 10 11 | package taxcode
const (
// AnnotationKeyManagedBy indicates what created/owns this tax code.
AnnotationKeyManagedBy = "managed_by"
// AnnotationValueManagedBySystem is set when the tax code was auto-created
// by the system (e.g. via GetOrCreateByAppMapping).
AnnotationValueManagedBySystem = "system"
)
|