1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
package flash.events;
extern class DRMReturnVoucherErrorEvent extends ErrorEvent {
@:flash.property var licenseID(get,set) : String;
@:flash.property var policyID(get,set) : String;
@:flash.property var serverURL(get,set) : String;
@:flash.property var subErrorID(get,set) : Int;
function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?inDetail : String, inErrorID : Int = 0, inSubErrorID : Int = 0, ?inServerURL : String, ?inLicenseID : String, ?inPolicyID : String) : Void;
private function get_licenseID() : String;
private function get_policyID() : String;
private function get_serverURL() : String;
private function get_subErrorID() : Int;
private function set_licenseID(value : String) : String;
private function set_policyID(value : String) : String;
private function set_serverURL(value : String) : String;
private function set_subErrorID(value : Int) : Int;
static final RETURN_VOUCHER_ERROR : String;
}
|