func (order *Order) GetLastModifiedAtFormatted() string { return utils.GetFormattedTime(order.LastModifiedAt) }
func (order *Order) GetCreatedAtFormatted() string { return utils.GetFormattedTime(order.CreatedAt) }
func (customer *Customer) GetCreatedAtFormatted() string { return utils.GetFormattedTime(customer.CreatedAt) }
func (customer *Customer) GetLastModifiedAtFormatted() string { return utils.GetFormattedTime(customer.LastModifiedAt) }
func (v *Version) GetFormattedTime() string { return utils.GetFormattedTime(v.LastModifiedAt) }