-
Notifications
You must be signed in to change notification settings - Fork 122
Open
Description
I use the generator on the site.
What is the reason for the lack of support for nested arrays?
Personally, I solve it in the way below:
TVkKeyboardButtons = TArray<TVkKeyboardButton>; -- **and array there**
TVkKeyboard = class
private
FButtons: TArray<TVkKeyboardButtons>;
FOne_time: Boolean;
public
property buttons: TArray<TVkKeyboardButtons> read FButtons write FButtons; - **array there**
property one_time: Boolean read FOne_time write FOne_time;
destructor Destroy; override;
function ToJsonString: string;
class function FromJsonString(AJsonString: string): TVkKeyboard;
end;
Metadata
Metadata
Assignees
Labels
No labels