mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
36
docs/tools/sdk/python/Reference/V2024/Models/SourceCode.md
Normal file
36
docs/tools/sdk/python/Reference/V2024/Models/SourceCode.md
Normal file
@@ -0,0 +1,36 @@
|
||||
---
|
||||
id: v2024-source-code
|
||||
title: SourceCode
|
||||
pagination_label: SourceCode
|
||||
sidebar_label: SourceCode
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'SourceCode', 'V2024SourceCode']
|
||||
slug: /tools/sdk/python/v2024/models/source-code
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceCode', 'V2024SourceCode']
|
||||
---
|
||||
|
||||
# SourceCode
|
||||
|
||||
SourceCode
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**version** | **str** | the version of the code | [required]
|
||||
**script** | **str** | The code | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.source_code import SourceCode
|
||||
|
||||
source_code = SourceCode(
|
||||
version='1.0',
|
||||
script='return "Mr. " + firstName;'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user