Add proper response documentation
- Added response documentation for organizations - Additional information is likely to be added later (cherry picked from commit 57b589d152105376136e3f6a8bf5f02134569464)
This commit is contained in:
parent
544c9e1f32
commit
8ad8db42e3
1 changed files with 16 additions and 4 deletions
|
@ -82,10 +82,22 @@ EXAMPLES = r'''
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = r'''
|
RETURN = r'''
|
||||||
response:
|
data:
|
||||||
description: Data returned from Meraki dashboard.
|
description: Information about the organization which was created or modified
|
||||||
type: dict
|
returned: success
|
||||||
returned: info
|
type: complex
|
||||||
|
contains:
|
||||||
|
id:
|
||||||
|
description: Unique identification number of organization
|
||||||
|
returned: success
|
||||||
|
type: int
|
||||||
|
sample: 2930418
|
||||||
|
name:
|
||||||
|
description: Name of organization
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: YourOrg
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in a new issue