Media

You can retrieve a media stored on MBurger with its id:

MBClient.getMedia(withId: MEDIA_ID,
                  success: { media in
                        
                  },
                  failure: { error in
                            
                  })

To retrieve all the media that are saved in MBurger you can use this function:

MBClient.getAllMedia(success: { media in
            
},
failure: { error in
            
})

Last updated