8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
export interface DocusignConfig {
|
|
secret?: string | null;
|
|
}
|
|
export declare const DocusignConfigSerializer: {
|
|
_fromJsonObject(object: any): DocusignConfig;
|
|
_toJsonObject(self: DocusignConfig): any;
|
|
};
|