Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion goneonize/Neonize.proto
Original file line number Diff line number Diff line change
Expand Up @@ -940,4 +940,28 @@ message LogEntry {
required string Name = 3;
}

message Stop{}
message Stop{}

message BusinessHoursConfig {
optional string DayOfWeek = 1;
optional string Mode = 2;
optional string OpenTime = 3;
optional string CloseTime = 4;
}
message Category {
optional string ID = 1;
optional string Name = 2;
}
message BusinessProfile {
optional JID JID = 1;
optional string Address = 2;
optional string Email = 3;
repeated Category Categories = 4;
map<string, string> ProfileOptions = 5;
optional string BusinessHoursTimeZone = 6;
repeated BusinessHoursConfig BusinessHours = 7;
}
message GetBusinessProfileReturnFunction{
optional BusinessProfile Profile = 1;
optional string Error = 2;
}
Loading