zdk.net
BanafoIntegration.h
1 //
2 // BanafoIntegration.h
3 // ZDK
4 //
5 
6 #ifndef ZDK_NET_BanafoIntegration_h
7 #define ZDK_NET_BanafoIntegration_h
8 
9 #include "native_shared_ptr.h"
10 #include "PublicInterfaces.h"
11 #include "ZHandle.h"
12 
13 using namespace System::Collections::Generic;
14 
15 namespace ZDK_NET
16 {
17 
22  public ref class BanafoIntegration : ZHandle
23  {
24  public:
25  ZDK::IBanafoIntegration* cppRef = nullptr;
26 
27  BanafoIntegration(ZDK::Shared::BanafoIntegration src);
30 
37  property System::String^ Name
38  {
39  System::String^ get();
40  }
41 
48  property System::String^ Status
49  {
50  System::String^ get();
51  }
52 
59  property System::String^ CreatedAt
60  {
61  System::String^ get();
62  }
63 
70  property System::String^ UpdatedAt
71  {
72  System::String^ get();
73  }
74 
75  virtual long long Handle() override;
76 
77  virtual void Initialize() override;
78 
79  virtual void ReleaseReference() override;
80 
81  };
82 }
83 
84 #endif
ZDK_NET::BanafoIntegration
Banafo Integration.
Definition: BanafoIntegration.h:23
ZDK_NET::ZHandle
Definition: ZHandle.h:18