| Lines 168-173
          sub store {
      
      
        Link Here | 
        
          | 168 |  | 168 |  | 
        
          | 169 | =cut | 169 | =cut | 
        
          | 170 |  | 170 |  | 
            
              |  |  | 171 | =head3 public_read_list | 
            
              | 172 |  | 
            
              | 173 | This method returns the list of publicly readable database fields for both API and UI output purposes | 
            
              | 174 |  | 
            
              | 175 | =cut | 
            
              | 176 |  | 
            
              | 177 | sub public_read_list { | 
            
              | 178 |     return [ | 
            
              | 179 |         'ticket_id',   'title',         'body', | 
            
              | 180 |         'reporter_id', 'reported_date', 'resolved_date', | 
            
              | 181 |         'biblio_id' | 
            
              | 182 |     ]; | 
            
              | 183 | } | 
            
              | 184 |  | 
        
          | 171 | =head3 to_api_mapping | 185 | =head3 to_api_mapping | 
        
          | 172 |  | 186 |  | 
        
          | 173 | This method returns the mapping for representing a Koha::Ticket object | 187 | This method returns the mapping for representing a Koha::Ticket object | 
            
              | 174 | -  |  |  |