{$field}) && $this->format == SellingModeType::AUCTION && $this->{$field}->amount > 0 ) { $output[$field] = $this->{$field}; } break; case 'price': if (!empty($this->{$field}) && $this->{$field}->amount > 0) { $output[$field] = $this->{$field}; } break; default: if (!empty($this->{$field})) { $output[$field] = $this->{$field}; } } } return $output; } }