Method: LockstepSdk::ApplicationModel#as_json
- Defined in:
- lib/lockstep_sdk/models/application_model.rb
#as_json(options = {}) ⇒ object
Returns This object as a JSON key-value structure.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/lockstep_sdk/models/application_model.rb', line 128 def as_json(={}) { 'appId' => @app_id, 'name' => @name, 'description' => @description, 'appType' => @app_type, 'ownerId' => @owner_id, 'projectUrl' => @project_url, 'iconUrl' => @icon_url, 'createdUserId' => @created_user_id, 'modifiedUserId' => @modified_user_id, 'created' => @created, 'modified' => @modified, 'isActive' => @is_active, 'groupKey' => @group_key, 'b2CClientId' => @b2_cclient_id, 'notes' => @notes, 'attachments' => @attachments, 'customFieldDefinitions' => @custom_field_definitions, 'customFieldValues' => @custom_field_values, } end |