package types import "database/sql" // FilingScheduleItem is a first class object type type FilingScheduleItem struct { ID string CreatedByID string CreatedDate sql.NullTime FilingTypeID string Description string DueDate sql.NullTime LastModifiedByID string LastModifiedDate sql.NullTime }