namespace Beam.Models;
public enum DownloadTarget {
///
/// Specifies the target as the object directly returned through accessing the URL (whole page).
///
///
/// Default to this mode where possible.
///
URL,
///
/// Specifies the target as an object accessible only through the url (element in page).
///
///
/// Only use this mode if what is needed
/// cannot be acquired by using
///
InURL,
///
/// Specifies the target as an object that may be retrieved through a user-defined operation on the url
/// (e.g. javascript triggered downloads).
///
///
/// Only use this mode if what is needed cannot be acquired by either
/// or
///
Complex
}