Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export class AutofillSelection {
  2.   public stack_module_id: number;
  3.   public field_all: Object = {
  4.     portal_id: null,
  5.     order: [],
  6.     limit: null
  7.   };
  8.   public field_current: Object = {};
  9.   public field_query: Object = {
  10.     portal_id: null,
  11.     query: [],
  12.     order: [],
  13.     limit: null
  14.   };
  15.   public field_related: Object = {
  16.     portal_id: null,
  17.     related: {
  18.       object_type: {},
  19.       object_ids: []
  20.     },
  21.     order: [],
  22.     limit: null
  23.   };
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement