DRMReturnVoucherErrorEvent.hx 952 B

123456789101112131415161718
  1. package flash.events;
  2. extern class DRMReturnVoucherErrorEvent extends ErrorEvent {
  3. @:flash.property var licenseID(get,set) : String;
  4. @:flash.property var policyID(get,set) : String;
  5. @:flash.property var serverURL(get,set) : String;
  6. @:flash.property var subErrorID(get,set) : Int;
  7. 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;
  8. private function get_licenseID() : String;
  9. private function get_policyID() : String;
  10. private function get_serverURL() : String;
  11. private function get_subErrorID() : Int;
  12. private function set_licenseID(value : String) : String;
  13. private function set_policyID(value : String) : String;
  14. private function set_serverURL(value : String) : String;
  15. private function set_subErrorID(value : Int) : Int;
  16. static final RETURN_VOUCHER_ERROR : String;
  17. }